[][src]Enum stm32f0xx_hal::stm32::tim2::smcr::MSM_A

pub enum MSM_A {
    NOSYNC,
    SYNC,
}

Master/Slave mode

Value on reset: 0

Variants

NOSYNC

0: No action

SYNC

1: The effect of an event on the trigger input (TRGI) is delayed to allow a perfect synchronization between the current timer and its slaves (through TRGO). It is useful if we want to synchronize several timers on a single external event.

Trait Implementations

impl Clone for MSM_A[src]

impl Copy for MSM_A[src]

impl Debug for MSM_A[src]

impl PartialEq<MSM_A> for MSM_A[src]

Auto Trait Implementations

impl Send for MSM_A

impl Sync for MSM_A

impl Unpin for MSM_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> Same<T> for T

type Output = T

Should always be Self

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.