pub enum EdCommand {
Test,
RamRead(u32, u32),
RomRead(u32, u32),
RomWrite(u32, u32),
RomFill(u32, u32, u32),
FpgaInit(u32),
AppStart(bool),
}Variants§
Test
RamRead(u32, u32)
RomRead(u32, u32)
RomWrite(u32, u32)
RomFill(u32, u32, u32)
FpgaInit(u32)
AppStart(bool)
Auto Trait Implementations§
impl Freeze for EdCommand
impl RefUnwindSafe for EdCommand
impl Send for EdCommand
impl Sync for EdCommand
impl Unpin for EdCommand
impl UnwindSafe for EdCommand
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