[][src]Enum imxrt1062_tmr1::ctrl::ONCE_A

pub enum ONCE_A {
    ONCE_0,
    ONCE_1,
}

Count Once

Value on reset: 0

Variants

ONCE_0

0: Count repeatedly.

ONCE_1

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.

Trait Implementations

impl Clone for ONCE_A[src]

impl Copy for ONCE_A[src]

impl Debug for ONCE_A[src]

impl From<ONCE_A> for bool[src]

impl PartialEq<ONCE_A> for ONCE_A[src]

impl StructuralPartialEq for ONCE_A[src]

Auto Trait Implementations

impl Send for ONCE_A

impl Sync for ONCE_A

impl Unpin for ONCE_A

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.