pub struct FreqmMsrClock { /* private fields */ }
Expand description
A typed token that indicates that the clock for the peripheral(s) with the matching name has been configured.
The effective clock frequency is available via the freq
method,
or by converting the object into a Hertz
instance.
The peripheral initialization code will typically require passing
in this object to prove at compile time that the clock has been
correctly initialized.
Implementations§
Trait Implementations§
Source§impl Debug for FreqmMsrClock
impl Debug for FreqmMsrClock
Source§impl<I: PclkSourceId> From<Pclk<FreqMMeasure, I>> for FreqmMsrClock
V2 to V1 compatibility layer that allows to convert V2 Pclk
constructs
into corresponding V1 *Clock
types. Thus, user can manage V1 clocking
compatible peripherals while using V2 clocking API
impl<I: PclkSourceId> From<Pclk<FreqMMeasure, I>> for FreqmMsrClock
V2 to V1 compatibility layer that allows to convert V2 Pclk
constructs
into corresponding V1 *Clock
types. Thus, user can manage V1 clocking
compatible peripherals while using V2 clocking API
Source§fn from(pclk: Pclk<FreqMMeasure, I>) -> Self
fn from(pclk: Pclk<FreqMMeasure, I>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FreqmMsrClock
impl RefUnwindSafe for FreqmMsrClock
impl Send for FreqmMsrClock
impl Sync for FreqmMsrClock
impl Unpin for FreqmMsrClock
impl UnwindSafe for FreqmMsrClock
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