pub struct Pll {
pub prediv: PllPreDiv,
pub mul: PllMul,
pub divp: Option<PllPDiv>,
pub divq: Option<PllQDiv>,
pub divr: Option<PllRDiv>,
}Fields§
§prediv: PllPreDivPLL pre-divider (DIVM).
mul: PllMulPLL multiplication factor.
divp: Option<PllPDiv>PLL P division factor. If None, PLL P output is disabled.
divq: Option<PllQDiv>PLL Q division factor. If None, PLL Q output is disabled.
divr: Option<PllRDiv>PLL R division factor. If None, PLL R output is disabled.
Trait Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToMutAligned for Twhere
T: ?Sized,
impl<T> ToMutAligned for Twhere
T: ?Sized,
Source§fn to_mut_aligned<A>(&mut self) -> &mut Aligned<A, <T as ToMutAligned>::Element>where
A: Alignment,
fn to_mut_aligned<A>(&mut self) -> &mut Aligned<A, <T as ToMutAligned>::Element>where
A: Alignment,
Create a type-checked aligned value from a value that is aligned.