#[repr(u8)]pub enum Octospisel {
    HCLK4 = 0,
    PLL1_Q = 1,
    PLL2_R = 2,
    PER = 3,
}Variants§
HCLK4 = 0
rcc_hclk selected as kernel clock (default after reset)
PLL1_Q = 1
pll1_q_ck selected as kernel clock
PLL2_R = 2
pll2_r_ck selected as kernel clock
PER = 3
per_ck selected as kernel clock
Implementations§
Source§impl Octospisel
 
impl Octospisel
Trait Implementations§
Source§impl Clone for Octospisel
 
impl Clone for Octospisel
Source§fn clone(&self) -> Octospisel
 
fn clone(&self) -> Octospisel
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
 
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for Octospisel
 
impl Debug for Octospisel
Source§impl Format for Octospisel
 
impl Format for Octospisel
Source§impl From<u8> for Octospisel
 
impl From<u8> for Octospisel
Source§fn from(val: u8) -> Octospisel
 
fn from(val: u8) -> Octospisel
Converts to this type from the input type.
Source§impl Ord for Octospisel
 
impl Ord for Octospisel
Source§fn cmp(&self, other: &Octospisel) -> Ordering
 
fn cmp(&self, other: &Octospisel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Octospisel
 
impl PartialEq for Octospisel
Source§impl PartialOrd for Octospisel
 
impl PartialOrd for Octospisel
impl Copy for Octospisel
impl Eq for Octospisel
impl StructuralPartialEq for Octospisel
Auto Trait Implementations§
impl Freeze for Octospisel
impl RefUnwindSafe for Octospisel
impl Send for Octospisel
impl Sync for Octospisel
impl Unpin for Octospisel
impl UnwindSafe for Octospisel
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