#[repr(u8)]pub enum Cmdh13Loop {
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 Cmdh13Loop
impl Cmdh13Loop
Trait Implementations§
Source§impl Clone for Cmdh13Loop
impl Clone for Cmdh13Loop
Source§fn clone(&self) -> Cmdh13Loop
fn clone(&self) -> Cmdh13Loop
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 Cmdh13Loop
impl Debug for Cmdh13Loop
Source§impl From<Cmdh13Loop> for u8
impl From<Cmdh13Loop> for u8
Source§fn from(val: Cmdh13Loop) -> u8
fn from(val: Cmdh13Loop) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Cmdh13Loop
impl From<u8> for Cmdh13Loop
Source§fn from(val: u8) -> Cmdh13Loop
fn from(val: u8) -> Cmdh13Loop
Converts to this type from the input type.
Source§impl Ord for Cmdh13Loop
impl Ord for Cmdh13Loop
Source§fn cmp(&self, other: &Cmdh13Loop) -> Ordering
fn cmp(&self, other: &Cmdh13Loop) -> 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 Cmdh13Loop
impl PartialEq for Cmdh13Loop
Source§impl PartialOrd for Cmdh13Loop
impl PartialOrd for Cmdh13Loop
impl Copy for Cmdh13Loop
impl Eq for Cmdh13Loop
impl StructuralPartialEq for Cmdh13Loop
Auto Trait Implementations§
impl Freeze for Cmdh13Loop
impl RefUnwindSafe for Cmdh13Loop
impl Send for Cmdh13Loop
impl Sync for Cmdh13Loop
impl Unpin for Cmdh13Loop
impl UnwindSafe for Cmdh13Loop
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