Enum stm32_metapac::rcc::vals::Pllmul
#[repr(u8)]pub enum Pllmul {
Show 16 variants
MUL2 = 0,
MUL3 = 1,
MUL4 = 2,
MUL5 = 3,
MUL6 = 4,
MUL7 = 5,
MUL8 = 6,
MUL9 = 7,
MUL10 = 8,
MUL11 = 9,
MUL12 = 10,
MUL13 = 11,
MUL14 = 12,
MUL15 = 13,
MUL16 = 14,
_RESERVED_f = 15,
}
Variants§
MUL2 = 0
PLL input clock x2
MUL3 = 1
PLL input clock x3
MUL4 = 2
PLL input clock x4
MUL5 = 3
PLL input clock x5
MUL6 = 4
PLL input clock x6
MUL7 = 5
PLL input clock x7
MUL8 = 6
PLL input clock x8
MUL9 = 7
PLL input clock x9
MUL10 = 8
PLL input clock x10
MUL11 = 9
PLL input clock x11
MUL12 = 10
PLL input clock x12
MUL13 = 11
PLL input clock x13
MUL14 = 12
PLL input clock x14
MUL15 = 13
PLL input clock x15
MUL16 = 14
PLL input clock x16
_RESERVED_f = 15
Implementations§
Trait Implementations§
§impl Ord for Pllmul
impl Ord for Pllmul
§impl PartialOrd for Pllmul
impl PartialOrd for Pllmul
§fn partial_cmp(&self, other: &Pllmul) -> Option<Ordering>
fn partial_cmp(&self, other: &Pllmul) -> 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 Pllmul
impl Eq for Pllmul
impl StructuralPartialEq for Pllmul
Auto Trait Implementations§
impl Freeze for Pllmul
impl RefUnwindSafe for Pllmul
impl Send for Pllmul
impl Sync for Pllmul
impl Unpin for Pllmul
impl UnwindSafe for Pllmul
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