#[repr(u8)]pub enum Cmdh15Loop {
Show 16 variants
CMD_EXEC_1X = 0,
CMD_EXEC_2X = 1,
CMD_EXEC_3X = 2,
CMD_EXECUTES_CORRESPONDING_TIMES_3 = 3,
CMD_EXECUTES_CORRESPONDING_TIMES_4 = 4,
CMD_EXECUTES_CORRESPONDING_TIMES_5 = 5,
CMD_EXECUTES_CORRESPONDING_TIMES_6 = 6,
CMD_EXECUTES_CORRESPONDING_TIMES_7 = 7,
CMD_EXECUTES_CORRESPONDING_TIMES_8 = 8,
CMD_EXECUTES_CORRESPONDING_TIMES_9 = 9,
_RESERVED_a = 10,
_RESERVED_b = 11,
_RESERVED_c = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
CMD_EXEC_15X = 15,
}Variants§
CMD_EXEC_1X = 0
Looping not enabled. Command executes one time.
CMD_EXEC_2X = 1
Loop one time. Command executes two times.
CMD_EXEC_3X = 2
Loop two times. Command executes three times.
CMD_EXECUTES_CORRESPONDING_TIMES_3 = 3
Loop corresponding number of times. Command executes LOOP + 1 times.
CMD_EXECUTES_CORRESPONDING_TIMES_4 = 4
Loop corresponding number of times. Command executes LOOP + 1 times.
CMD_EXECUTES_CORRESPONDING_TIMES_5 = 5
Loop corresponding number of times. Command executes LOOP + 1 times.
CMD_EXECUTES_CORRESPONDING_TIMES_6 = 6
Loop corresponding number of times. Command executes LOOP + 1 times.
CMD_EXECUTES_CORRESPONDING_TIMES_7 = 7
Loop corresponding number of times. Command executes LOOP + 1 times.
CMD_EXECUTES_CORRESPONDING_TIMES_8 = 8
Loop corresponding number of times. Command executes LOOP + 1 times.
CMD_EXECUTES_CORRESPONDING_TIMES_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
CMD_EXEC_15X = 15
Loop 15 times. Command executes 16 times.
Implementations§
Source§impl Cmdh15Loop
impl Cmdh15Loop
Trait Implementations§
Source§impl Clone for Cmdh15Loop
impl Clone for Cmdh15Loop
Source§fn clone(&self) -> Cmdh15Loop
fn clone(&self) -> Cmdh15Loop
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 Cmdh15Loop
impl Debug for Cmdh15Loop
Source§impl From<Cmdh15Loop> for u8
impl From<Cmdh15Loop> for u8
Source§fn from(val: Cmdh15Loop) -> u8
fn from(val: Cmdh15Loop) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Cmdh15Loop
impl From<u8> for Cmdh15Loop
Source§fn from(val: u8) -> Cmdh15Loop
fn from(val: u8) -> Cmdh15Loop
Converts to this type from the input type.
Source§impl Ord for Cmdh15Loop
impl Ord for Cmdh15Loop
Source§fn cmp(&self, other: &Cmdh15Loop) -> Ordering
fn cmp(&self, other: &Cmdh15Loop) -> 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 Cmdh15Loop
impl PartialEq for Cmdh15Loop
Source§impl PartialOrd for Cmdh15Loop
impl PartialOrd for Cmdh15Loop
impl Copy for Cmdh15Loop
impl Eq for Cmdh15Loop
impl StructuralPartialEq for Cmdh15Loop
Auto Trait Implementations§
impl Freeze for Cmdh15Loop
impl RefUnwindSafe for Cmdh15Loop
impl Send for Cmdh15Loop
impl Sync for Cmdh15Loop
impl Unpin for Cmdh15Loop
impl UnwindSafe for Cmdh15Loop
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