Enum stm32_metapac::timer::vals::Msm
#[repr(u8)]pub enum Msm {
NOSYNC = 0,
SYNC = 1,
}
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.
Implementations§
Trait Implementations§
§impl Ord for Msm
impl Ord for Msm
§impl PartialOrd for Msm
impl PartialOrd for Msm
§fn partial_cmp(&self, other: &Msm) -> Option<Ordering>
fn partial_cmp(&self, other: &Msm) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Msm
impl Eq for Msm
impl StructuralPartialEq for Msm
Auto Trait Implementations§
impl Freeze for Msm
impl RefUnwindSafe for Msm
impl Send for Msm
impl Sync for Msm
impl Unpin for Msm
impl UnwindSafe for Msm
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