Enum stm32_metapac::rcc::vals::Fmcsel
#[repr(u8)]pub enum Fmcsel {
HCLK3 = 0,
PLL1_Q = 1,
PLL2_R = 2,
PER = 3,
}
Variants§
HCLK3 = 0
AHB3 selected as peripheral clock
PLL1_Q = 1
pll1_q selected as peripheral clock
PLL2_R = 2
pll2_r selected as peripheral clock
PER = 3
PER selected as peripheral clock
Implementations§
Trait Implementations§
§impl Ord for Fmcsel
impl Ord for Fmcsel
§impl PartialOrd for Fmcsel
impl PartialOrd for Fmcsel
§fn partial_cmp(&self, other: &Fmcsel) -> Option<Ordering>
fn partial_cmp(&self, other: &Fmcsel) -> 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 Fmcsel
impl Eq for Fmcsel
impl StructuralEq for Fmcsel
impl StructuralPartialEq for Fmcsel
Auto Trait Implementations§
impl RefUnwindSafe for Fmcsel
impl Send for Fmcsel
impl Sync for Fmcsel
impl Unpin for Fmcsel
impl UnwindSafe for Fmcsel
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