pub enum Pll {
Oscillator {
source: Pllsel,
divm: Plldivm,
fractional: u32,
divn: u16,
divp1: Pllpdiv,
divp2: Pllpdiv,
},
Bypass {
source: Pllsel,
},
}Variants§
Trait Implementations§
impl Copy for Pll
impl StructuralPartialEq for Pll
Auto Trait Implementations§
impl Freeze for Pll
impl RefUnwindSafe for Pll
impl Send for Pll
impl Sync for Pll
impl Unpin for Pll
impl UnwindSafe for Pll
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