[][src]Enum stm32f1xx_hal::pwm_input::ReadMode

pub enum ReadMode {
    Instant,
    WaitForNextCapture,
}

How the data is read from the timer

Variants

Instant

Return the latest captured data

WaitForNextCapture

Wait for one period of the signal before computing the frequency and the duty cycle The microcontroller will be halted for at most two period of the input signal.

Auto Trait Implementations

impl Send for ReadMode

impl Sync for ReadMode

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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