[][src]Enum zinc64_debug::Command

pub enum Command {
    Attach(Sender<Output>),
    Detach,
    Continue,
    Step,
    BpClear,
    BpCondition(u16Stringu32),
    BpDisable(u16),
    BpDisableAll,
    BpEnable(u16),
    BpEnableAll,
    BpIgnore(u16u16),
    BpList,
    BpRemove(u16),
    BpSet(u16bool),
    MemRead(u16u16),
    MemWrite(u16Vec<u8>),
    RegRead,
    RegWrite(Vec<RegOp>),
    SysQuit,
    SysReset(bool),
    SysScreen,
    SysStopwatch(bool),
}

Variants

Attach(Sender<Output>)DetachContinueStepBpClearBpCondition(u16Stringu32)BpDisable(u16)BpDisableAllBpEnable(u16)BpEnableAllBpIgnore(u16u16)BpListBpRemove(u16)BpSet(u16bool)MemRead(u16u16)MemWrite(u16Vec<u8>)RegReadRegWrite(Vec<RegOp>)SysQuitSysReset(bool)SysScreenSysStopwatch(bool)

Auto Trait Implementations

impl Send for Command

impl !Sync for Command

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]