Enum stm32_metapac::hrtim::vals::Syncin
#[repr(u8)]pub enum Syncin {
DISABLED = 0,
_RESERVED_1 = 1,
INTERNAL = 2,
EXTERNAL = 3,
}
Variants§
DISABLED = 0
Disabled. HRTIM is not synchronized and runs in standalone mode
_RESERVED_1 = 1
INTERNAL = 2
Internal event: the HRTIM is synchronized with the on-chip timer
EXTERNAL = 3
External event: a positive pulse on HRTIM_SCIN input triggers the HRTIM
Implementations§
Trait Implementations§
§impl Ord for Syncin
impl Ord for Syncin
§impl PartialOrd for Syncin
impl PartialOrd for Syncin
§fn partial_cmp(&self, other: &Syncin) -> Option<Ordering>
fn partial_cmp(&self, other: &Syncin) -> 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 Syncin
impl Eq for Syncin
impl StructuralEq for Syncin
impl StructuralPartialEq for Syncin
Auto Trait Implementations§
impl RefUnwindSafe for Syncin
impl Send for Syncin
impl Sync for Syncin
impl Unpin for Syncin
impl UnwindSafe for Syncin
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