Enum stm32_metapac::rcc::vals::Pllrge
#[repr(u8)]pub enum Pllrge {
RANGE1 = 0,
RANGE2 = 1,
RANGE4 = 2,
RANGE8 = 3,
}
Variants§
RANGE1 = 0
Frequency is between 1 and 2 MHz
RANGE2 = 1
Frequency is between 2 and 4 MHz
RANGE4 = 2
Frequency is between 4 and 8 MHz
RANGE8 = 3
Frequency is between 8 and 16 MHz
Implementations§
Trait Implementations§
§impl Ord for Pllrge
impl Ord for Pllrge
§impl PartialOrd for Pllrge
impl PartialOrd for Pllrge
§fn partial_cmp(&self, other: &Pllrge) -> Option<Ordering>
fn partial_cmp(&self, other: &Pllrge) -> 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 Pllrge
impl Eq for Pllrge
impl StructuralEq for Pllrge
impl StructuralPartialEq for Pllrge
Auto Trait Implementations§
impl RefUnwindSafe for Pllrge
impl Send for Pllrge
impl Sync for Pllrge
impl Unpin for Pllrge
impl UnwindSafe for Pllrge
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