[][src]Enum stm32l0xx_hal::device::tim2::ccmr1_input::IC1PSCW

pub enum IC1PSCW {
    NOPRESCALER,
    TWO_EVENTS,
    FOUR_EVENTS,
    EIGHT_EVENTS,
}

Values that can be written to the field IC1PSC

Variants

NOPRESCALER

no prescaler, capture is done each time an edge is detected on the capture input

TWO_EVENTS

Capture is done once every 2 events

FOUR_EVENTS

Capture is done once every 4 events

EIGHT_EVENTS

Capture is done once every 8 events

Trait Implementations

impl PartialEq<IC1PSCW> for IC1PSCW[src]

impl Debug for IC1PSCW[src]

impl Copy for IC1PSCW[src]

impl Clone for IC1PSCW[src]

Auto Trait Implementations

impl Unpin for IC1PSCW

impl Send for IC1PSCW

impl Sync for IC1PSCW

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self