#[repr(u8)]pub enum Loop {
CmdExec1x = 0,
CmdExec2x = 1,
CmdExec3x = 2,
CmdExecutesCorrespondingTimes3 = 3,
CmdExecutesCorrespondingTimes4 = 4,
CmdExecutesCorrespondingTimes5 = 5,
CmdExecutesCorrespondingTimes6 = 6,
CmdExecutesCorrespondingTimes7 = 7,
CmdExecutesCorrespondingTimes8 = 8,
CmdExecutesCorrespondingTimes9 = 9,
CmdExec15x = 15,
}Expand description
Loop Count Select
Value on reset: 0
Variants§
CmdExec1x = 0
0: Looping not enabled. Command executes 1 time.
CmdExec2x = 1
1: Loop 1 time. Command executes 2 times.
CmdExec3x = 2
2: Loop 2 times. Command executes 3 times.
CmdExecutesCorrespondingTimes3 = 3
3: Loop corresponding number of times. Command executes LOOP+1 times.
CmdExecutesCorrespondingTimes4 = 4
4: Loop corresponding number of times. Command executes LOOP+1 times.
CmdExecutesCorrespondingTimes5 = 5
5: Loop corresponding number of times. Command executes LOOP+1 times.
CmdExecutesCorrespondingTimes6 = 6
6: Loop corresponding number of times. Command executes LOOP+1 times.
CmdExecutesCorrespondingTimes7 = 7
7: Loop corresponding number of times. Command executes LOOP+1 times.
CmdExecutesCorrespondingTimes8 = 8
8: Loop corresponding number of times. Command executes LOOP+1 times.
CmdExecutesCorrespondingTimes9 = 9
9: Loop corresponding number of times. Command executes LOOP+1 times.
CmdExec15x = 15
15: Loop 15 times. Command executes 16 times.
Trait Implementations§
impl Copy for Loop
impl Eq for Loop
impl IsEnum for Loop
impl StructuralPartialEq for Loop
Auto Trait Implementations§
impl Freeze for Loop
impl RefUnwindSafe for Loop
impl Send for Loop
impl Sync for Loop
impl Unpin for Loop
impl UnsafeUnpin for Loop
impl UnwindSafe for Loop
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