Enum embassy_stm32::rcc::PllSource
source · #[repr(u8)]pub enum PllSource {
HSI = 0,
CSI = 1,
HSE = 2,
DISABLE = 3,
}
Variants§
HSI = 0
HSI selected as PLL clock
CSI = 1
CSI selected as PLL clock
HSE = 2
HSE selected as PLL clock
DISABLE = 3
No clock sent to DIVMx dividers and PLLs
Implementations§
Trait Implementations§
source§impl Ord for Pllsrc
impl Ord for Pllsrc
source§impl PartialEq for Pllsrc
impl PartialEq for Pllsrc
source§impl PartialOrd for Pllsrc
impl PartialOrd for Pllsrc
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 Pllsrc
impl Eq for Pllsrc
impl StructuralEq for Pllsrc
impl StructuralPartialEq for Pllsrc
Auto Trait Implementations§
impl RefUnwindSafe for Pllsrc
impl Send for Pllsrc
impl Sync for Pllsrc
impl Unpin for Pllsrc
impl UnwindSafe for Pllsrc
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