Result of running the serial monitor.
| 376 | |
| 377 | @dataclass(slots=True) |
| 378 | class MonitorResult: |
| 379 | """Result of running the serial monitor.""" |
| 380 | |
| 381 | success: bool |
| 382 | output_lines: list[str] |
| 383 | rpc_handler: JsonRpcHandler |
| 384 | |
| 385 | |
| 386 | def run_monitor( |