pub enum Command {
Show 22 variants
Attach(Sender<Output>),
Detach,
Continue,
Step,
BpClear,
BpCondition(u16, String, u32),
BpDisable(u16),
BpDisableAll,
BpEnable(u16),
BpEnableAll,
BpIgnore(u16, u16),
BpList,
BpRemove(u16),
BpSet(u16, bool),
MemRead(u16, u16),
MemWrite(u16, Vec<u8>),
RegRead,
RegWrite(Vec<RegOp>),
SysQuit,
SysReset(bool),
SysScreen,
SysStopwatch(bool),
}Variants§
Attach(Sender<Output>)
Detach
Continue
Step
BpClear
BpCondition(u16, String, u32)
BpDisable(u16)
BpDisableAll
BpEnable(u16)
BpEnableAll
BpIgnore(u16, u16)
BpList
BpRemove(u16)
BpSet(u16, bool)
MemRead(u16, u16)
MemWrite(u16, Vec<u8>)
RegRead
RegWrite(Vec<RegOp>)
SysQuit
SysReset(bool)
SysScreen
SysStopwatch(bool)
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
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