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