Enum embassy_stm32::rcc::Mco2Source
source · #[repr(u8)]pub enum Mco2Source {
SYS = 0,
PLL2_P = 1,
HSE = 2,
PLL1_P = 3,
CSI = 4,
LSI = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}
Variants§
SYS = 0
System clock selected for micro-controller clock output
PLL2_P = 1
pll2_p selected for micro-controller clock output
HSE = 2
HSE selected for micro-controller clock output
PLL1_P = 3
pll1_p selected for micro-controller clock output
CSI = 4
CSI selected for micro-controller clock output
LSI = 5
LSI selected for micro-controller clock output
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
Trait Implementations§
source§impl Ord for Mco2sel
impl Ord for Mco2sel
source§impl PartialEq for Mco2sel
impl PartialEq for Mco2sel
source§impl PartialOrd for Mco2sel
impl PartialOrd for Mco2sel
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 Mco2sel
impl Eq for Mco2sel
impl StructuralEq for Mco2sel
impl StructuralPartialEq for Mco2sel
Auto Trait Implementations§
impl RefUnwindSafe for Mco2sel
impl Send for Mco2sel
impl Sync for Mco2sel
impl Unpin for Mco2sel
impl UnwindSafe for Mco2sel
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