#[repr(u8)]pub enum Cmdh2Loop {
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§
Trait Implementations§
Source§impl Ord for Cmdh2Loop
impl Ord for Cmdh2Loop
Source§impl PartialOrd for Cmdh2Loop
impl PartialOrd for Cmdh2Loop
impl Copy for Cmdh2Loop
impl Eq for Cmdh2Loop
impl StructuralPartialEq for Cmdh2Loop
Auto Trait Implementations§
impl Freeze for Cmdh2Loop
impl RefUnwindSafe for Cmdh2Loop
impl Send for Cmdh2Loop
impl Sync for Cmdh2Loop
impl Unpin for Cmdh2Loop
impl UnwindSafe for Cmdh2Loop
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