Enum Mco
#[repr(u8)]pub enum Mco {
NOMCO = 0,
HSI14 = 1,
LSI = 2,
LSE = 3,
SYSCLK = 4,
HSI = 5,
HSE = 6,
PLL = 7,
}
Variants§
NOMCO = 0
MCO output disabled, no clock on MCO
HSI14 = 1
Internal RC 14 MHz (HSI14) oscillator clock selected
LSI = 2
Internal low speed (LSI) oscillator clock selected
LSE = 3
External low speed (LSE) oscillator clock selected
SYSCLK = 4
System clock selected
HSI = 5
Internal RC 8 MHz (HSI) oscillator clock selected
HSE = 6
External 4-32 MHz (HSE) oscillator clock selected
PLL = 7
PLL clock selected (divided by 1 or 2, depending en PLLNODIV)
Implementations§
Trait Implementations§
§impl Ord for Mco
impl Ord for Mco
§impl PartialOrd for Mco
impl PartialOrd for Mco
impl Copy for Mco
impl Eq for Mco
impl StructuralPartialEq for Mco
Auto Trait Implementations§
impl Freeze for Mco
impl RefUnwindSafe for Mco
impl Send for Mco
impl Sync for Mco
impl Unpin for Mco
impl UnwindSafe for Mco
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