#[repr(u8)]pub enum Ctrl3Once {
REPEAT = 0,
UNTIL_COMPARE = 1,
}Variants§
REPEAT = 0
Count repeatedly.
UNTIL_COMPARE = 1
Count until compare and then stop. If counting up, a successful compare occurs when the counter reaches a COMP1 value. If counting down, a successful compare occurs when the counter reaches a COMP2 value. When output mode $4 is used, the counter re-initializes after reaching the COMP1 value, continues to count to the COMP2 value, and then stops.
Implementations§
Trait Implementations§
Source§impl Ord for Ctrl3Once
impl Ord for Ctrl3Once
Source§impl PartialOrd for Ctrl3Once
impl PartialOrd for Ctrl3Once
impl Copy for Ctrl3Once
impl Eq for Ctrl3Once
impl StructuralPartialEq for Ctrl3Once
Auto Trait Implementations§
impl Freeze for Ctrl3Once
impl RefUnwindSafe for Ctrl3Once
impl Send for Ctrl3Once
impl Sync for Ctrl3Once
impl Unpin for Ctrl3Once
impl UnwindSafe for Ctrl3Once
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