pub enum CoreEvent {
None,
ResetComplete,
ControllerStateUpdated {
port: usize,
},
FrameReady {
frame_number: u64,
},
CpuInstructionComplete {
instruction_counter: u64,
},
}Variants§
Trait Implementations§
impl Copy for CoreEvent
impl Eq for CoreEvent
impl StructuralPartialEq for CoreEvent
Auto Trait Implementations§
impl Freeze for CoreEvent
impl RefUnwindSafe for CoreEvent
impl Send for CoreEvent
impl Sync for CoreEvent
impl Unpin for CoreEvent
impl UnsafeUnpin for CoreEvent
impl UnwindSafe for CoreEvent
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