Enum gdbstub::stub::run_blocking::Event   
source · pub enum Event<StopReason> {
    IncomingData(u8),
    TargetStopped(StopReason),
}Expand description
Returned by the wait_for_stop_reason closure in
GdbStub::run_blocking
Variants§
IncomingData(u8)
GDB Client sent data while the target was running.
TargetStopped(StopReason)
The target has stopped.