#[repr(u8)]pub enum Cmpen {
DISABLED_ALWAYS_STORE_RESULT = 0,
_RESERVED_1 = 1,
COMPARE_RESULT_STORE_IF_TRUE = 2,
COMPARE_RESULT_KEEP_CONVERTING_UNTIL_TRUE_STORE_IF_TRUE = 3,
}Variants§
DISABLED_ALWAYS_STORE_RESULT = 0
Compare disabled.
_RESERVED_1 = 1
COMPARE_RESULT_STORE_IF_TRUE = 2
Compare enabled. Store on true.
COMPARE_RESULT_KEEP_CONVERTING_UNTIL_TRUE_STORE_IF_TRUE = 3
Compare enabled. Repeat channel acquisition (sample/convert/compare) until true.
Implementations§
Trait Implementations§
Source§impl Ord for Cmpen
impl Ord for Cmpen
Source§impl PartialOrd for Cmpen
impl PartialOrd for Cmpen
impl Copy for Cmpen
impl Eq for Cmpen
impl StructuralPartialEq for Cmpen
Auto Trait Implementations§
impl Freeze for Cmpen
impl RefUnwindSafe for Cmpen
impl Send for Cmpen
impl Sync for Cmpen
impl Unpin for Cmpen
impl UnwindSafe for Cmpen
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