pub enum PllDivider {
Div2 = 0,
Div4 = 1,
Div6 = 2,
Div8 = 3,
}Expand description
PLL output divider options
Variants§
Div2 = 0
Divider PLL output by 2
Div4 = 1
Divider PLL output by 4
Div6 = 2
Divider PLL output by 6
Div8 = 3
Divider PLL output by 8
Trait Implementations§
Source§impl Clone for PllDivider
impl Clone for PllDivider
Source§fn clone(&self) -> PllDivider
fn clone(&self) -> PllDivider
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PllDivider
impl Debug for PllDivider
impl Copy for PllDivider
Auto Trait Implementations§
impl Freeze for PllDivider
impl RefUnwindSafe for PllDivider
impl Send for PllDivider
impl Sync for PllDivider
impl Unpin for PllDivider
impl UnwindSafe for PllDivider
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