#[repr(u8)]pub enum Idxcmdselect {
Disable = 0,
Set = 1,
Clear = 2,
Hold = 3,
}
Expand description
Ramp Index Command
Value on reset: 0
Variants§
Disable = 0
0: Command disabled: Index toggles between cycles A and B
Set = 1
1: Set index: cycle B will be forced in the next cycle
Clear = 2
2: Clear index: cycle A will be forced in the next cycle
Hold = 3
3: Hold index: the next cycle will be the same as the current cycle
Trait Implementations§
Source§impl Clone for Idxcmdselect
impl Clone for Idxcmdselect
Source§fn clone(&self) -> Idxcmdselect
fn clone(&self) -> Idxcmdselect
Returns a copy 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 Idxcmdselect
impl Debug for Idxcmdselect
Source§impl From<Idxcmdselect> for u8
impl From<Idxcmdselect> for u8
Source§fn from(variant: Idxcmdselect) -> Self
fn from(variant: Idxcmdselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Idxcmdselect
impl PartialEq for Idxcmdselect
impl Copy for Idxcmdselect
impl Eq for Idxcmdselect
impl IsEnum for Idxcmdselect
impl StructuralPartialEq for Idxcmdselect
Auto Trait Implementations§
impl Freeze for Idxcmdselect
impl RefUnwindSafe for Idxcmdselect
impl Send for Idxcmdselect
impl Sync for Idxcmdselect
impl Unpin for Idxcmdselect
impl UnwindSafe for Idxcmdselect
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