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