pub enum MSMR {
NOSYNC,
SYNC,
}
Expand description
Possible values of the field MSM
Variants§
NOSYNC
No action
SYNC
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§
Source§impl MSMR
impl MSMR
Sourcepub fn bit_is_clear(&self) -> bool
pub fn bit_is_clear(&self) -> bool
Returns true
if the bit is clear (0)
Sourcepub fn bit_is_set(&self) -> bool
pub fn bit_is_set(&self) -> bool
Returns true
if the bit is set (1)
Sourcepub fn is_no_sync(&self) -> bool
pub fn is_no_sync(&self) -> bool
Checks if the value of the field is NOSYNC
Trait Implementations§
impl Copy for MSMR
impl StructuralPartialEq for MSMR
Auto Trait Implementations§
impl Freeze for MSMR
impl RefUnwindSafe for MSMR
impl Send for MSMR
impl Sync for MSMR
impl Unpin for MSMR
impl UnwindSafe for MSMR
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