#[repr(u8)]pub enum Cmdh11Loop {
Show 16 variants
LOOP_0 = 0,
LOOP_1 = 1,
LOOP_2 = 2,
LOOP_3 = 3,
LOOP_4 = 4,
LOOP_5 = 5,
LOOP_6 = 6,
LOOP_7 = 7,
LOOP_8 = 8,
LOOP_9 = 9,
_RESERVED_a = 10,
_RESERVED_b = 11,
_RESERVED_c = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
LOOP_15 = 15,
}Variants§
LOOP_0 = 0
Looping not enabled. Command executes 1 time.
LOOP_1 = 1
Loop 1 time. Command executes 2 times.
LOOP_2 = 2
Loop 2 times. Command executes 3 times.
LOOP_3 = 3
Loop corresponding number of times. Command executes LOOP+1 times.
LOOP_4 = 4
Loop corresponding number of times. Command executes LOOP+1 times.
LOOP_5 = 5
Loop corresponding number of times. Command executes LOOP+1 times.
LOOP_6 = 6
Loop corresponding number of times. Command executes LOOP+1 times.
LOOP_7 = 7
Loop corresponding number of times. Command executes LOOP+1 times.
LOOP_8 = 8
Loop corresponding number of times. Command executes LOOP+1 times.
LOOP_9 = 9
Loop corresponding number of times. Command executes LOOP+1 times.
_RESERVED_a = 10
_RESERVED_b = 11
_RESERVED_c = 12
_RESERVED_d = 13
_RESERVED_e = 14
LOOP_15 = 15
Loop 15 times. Command executes 16 times.
Implementations§
Source§impl Cmdh11Loop
impl Cmdh11Loop
Trait Implementations§
Source§impl Clone for Cmdh11Loop
impl Clone for Cmdh11Loop
Source§fn clone(&self) -> Cmdh11Loop
fn clone(&self) -> Cmdh11Loop
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Cmdh11Loop
impl Debug for Cmdh11Loop
Source§impl From<Cmdh11Loop> for u8
impl From<Cmdh11Loop> for u8
Source§fn from(val: Cmdh11Loop) -> u8
fn from(val: Cmdh11Loop) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Cmdh11Loop
impl From<u8> for Cmdh11Loop
Source§fn from(val: u8) -> Cmdh11Loop
fn from(val: u8) -> Cmdh11Loop
Converts to this type from the input type.
Source§impl Ord for Cmdh11Loop
impl Ord for Cmdh11Loop
Source§fn cmp(&self, other: &Cmdh11Loop) -> Ordering
fn cmp(&self, other: &Cmdh11Loop) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Cmdh11Loop
impl PartialEq for Cmdh11Loop
Source§impl PartialOrd for Cmdh11Loop
impl PartialOrd for Cmdh11Loop
impl Copy for Cmdh11Loop
impl Eq for Cmdh11Loop
impl StructuralPartialEq for Cmdh11Loop
Auto Trait Implementations§
impl Freeze for Cmdh11Loop
impl RefUnwindSafe for Cmdh11Loop
impl Send for Cmdh11Loop
impl Sync for Cmdh11Loop
impl Unpin for Cmdh11Loop
impl UnwindSafe for Cmdh11Loop
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