Enum Mco
#[repr(u8)]pub enum Mco {
Show 16 variants
NOMCO = 0,
_RESERVED_1 = 1,
_RESERVED_2 = 2,
_RESERVED_3 = 3,
SYSCLK = 4,
HSI = 5,
HSE = 6,
PLL = 7,
PLL2 = 8,
PLL3DIV2 = 9,
XT1 = 10,
PLL3 = 11,
_RESERVED_c = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
_RESERVED_f = 15,
}
Variants§
NOMCO = 0
MCO output disabled, no clock on MCO
_RESERVED_1 = 1
_RESERVED_2 = 2
_RESERVED_3 = 3
SYSCLK = 4
System clock selected
HSI = 5
HSI oscillator clock selected
HSE = 6
HSE oscillator clock selected
PLL = 7
PLL clock divided by 2 selected
PLL2 = 8
PLL2 clock selected
PLL3DIV2 = 9
PLL3 clock divided by 2 selected
XT1 = 10
XT1 external oscillator selected
PLL3 = 11
PLL3 clock selected
_RESERVED_c = 12
_RESERVED_d = 13
_RESERVED_e = 14
_RESERVED_f = 15
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