Enum stm32_metapac::rcc::vals::Pllsrc
#[repr(u8)]pub enum Pllsrc {
HSI_DIV2 = 0,
HSE_DIV_PREDIV = 1,
}
Variants§
HSI_DIV2 = 0
HSI divided by 2 selected as PLL input clock
HSE_DIV_PREDIV = 1
HSE divided by PREDIV selected as PLL input clock
Implementations§
Trait Implementations§
§impl Ord for Pllsrc
impl Ord for Pllsrc
§impl PartialOrd for Pllsrc
impl PartialOrd for Pllsrc
§fn partial_cmp(&self, other: &Pllsrc) -> Option<Ordering>
fn partial_cmp(&self, other: &Pllsrc) -> Option<Ordering>
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 StructuralPartialEq for Pllsrc
Auto Trait Implementations§
impl Freeze for Pllsrc
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