#[repr(u8)]pub enum Cmdact {
NoCommandActive = 0,
Command1 = 1,
Command2 = 2,
CommandX3 = 3,
CommandX4 = 4,
CommandX5 = 5,
CommandX6 = 6,
CommandX7 = 7,
}Expand description
Command Active
Value on reset: 0
Variants§
NoCommandActive = 0
0: No command is currently in progress.
Command1 = 1
1: Command 1 currently being executed.
Command2 = 2
2: Command 2 currently being executed.
CommandX3 = 3
3: Associated command number is currently being executed.
CommandX4 = 4
4: Associated command number is currently being executed.
CommandX5 = 5
5: Associated command number is currently being executed.
CommandX6 = 6
6: Associated command number is currently being executed.
CommandX7 = 7
7: Associated command number is currently being executed.
Trait Implementations§
impl Copy for Cmdact
impl Eq for Cmdact
impl IsEnum for Cmdact
impl StructuralPartialEq for Cmdact
Auto Trait Implementations§
impl Freeze for Cmdact
impl RefUnwindSafe for Cmdact
impl Send for Cmdact
impl Sync for Cmdact
impl Unpin for Cmdact
impl UnsafeUnpin for Cmdact
impl UnwindSafe for Cmdact
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