pub enum SimulatorEvent {
Warning(String),
RobotCodeLoading,
RobotCodeStarting,
RobotCodeFinished,
RobotCodeError {
message: String,
backtrace: String,
},
LcdInitialized,
LcdUpdated(LcdLines),
LcdColorsUpdated(u32, u32),
LcdShutdown,
}Variants§
Warning(String)
RobotCodeLoading
RobotCodeStarting
RobotCodeFinished
RobotCodeError
LcdInitialized
LcdUpdated(LcdLines)
LcdColorsUpdated(u32, u32)
LcdShutdown
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for SimulatorEvent
impl Send for SimulatorEvent
impl Sync for SimulatorEvent
impl Unpin for SimulatorEvent
impl UnwindSafe for SimulatorEvent
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more