Enum embassy_stm32::rcc::McoSource
source · #[repr(u8)]pub enum McoSource {
NOMCO = 0,
_RESERVED_1 = 1,
_RESERVED_2 = 2,
_RESERVED_3 = 3,
SYS = 4,
HSI = 5,
HSE = 6,
PLL = 7,
}
Variants§
NOMCO = 0
MCO output disabled, no clock on MCO
_RESERVED_1 = 1
_RESERVED_2 = 2
_RESERVED_3 = 3
SYS = 4
System clock selected
HSI = 5
HSI oscillator clock selected
HSE = 6
HSE oscillator clock selected
PLL = 7
PLL clock divided by 2 selected
Implementations§
Trait Implementations§
source§impl Ord for Mcosel
impl Ord for Mcosel
source§impl PartialEq for Mcosel
impl PartialEq for Mcosel
source§impl PartialOrd for Mcosel
impl PartialOrd for Mcosel
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 Mcosel
impl Eq for Mcosel
impl StructuralPartialEq for Mcosel
Auto Trait Implementations§
impl Freeze for Mcosel
impl RefUnwindSafe for Mcosel
impl Send for Mcosel
impl Sync for Mcosel
impl Unpin for Mcosel
impl UnwindSafe for Mcosel
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