pub enum ExecutionMode {
Jump,
JumpAndHalt,
JumpAndWait(Duration),
}
Expand description
Execution mode for a SRAM program.
Variants§
Jump
Jump to the loading address and let the program run forever.
JumpAndHalt
Jump at the loading address and immediately halt execution.
JumpAndWait(Duration)
Jump at the loading address and wait for the core to halt or timeout.
Auto Trait Implementations§
impl Freeze for ExecutionMode
impl RefUnwindSafe for ExecutionMode
impl Send for ExecutionMode
impl Sync for ExecutionMode
impl Unpin for ExecutionMode
impl UnwindSafe for ExecutionMode
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