pub struct PLLConfig {
pub vco_freq: Rate<u32, 1, 1>,
pub refdiv: u8,
pub post_div1: u8,
pub post_div2: u8,
}Expand description
Parameters for a PLL.
Fields§
§vco_freq: Rate<u32, 1, 1>Voltage Controlled Oscillator frequency.
refdiv: u8Reference divider
post_div1: u8Post Divider 1
post_div2: u8Post Divider 2
Auto Trait Implementations§
impl Freeze for PLLConfig
impl RefUnwindSafe for PLLConfig
impl Send for PLLConfig
impl Sync for PLLConfig
impl Unpin for PLLConfig
impl UnwindSafe for PLLConfig
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<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more