pub struct Xosc32kBaseToken(/* private fields */);
Expand description
Singleton token that can be exchanged for Xosc32kBase
As explained in the clock
module documentation, instances of
various Token
types can be exchanged for actual clock types. They
typically represent clocks that are disabled at power-on reset.
The Xosc32kBase
clock is disabled at power-on reset. To use it, you must
first exchange the token for an actual clock with
Xosc32kBase::from_clock
or Xosc32kBase::from_crystal
.
Auto Trait Implementations§
impl Freeze for Xosc32kBaseToken
impl RefUnwindSafe for Xosc32kBaseToken
impl Send for Xosc32kBaseToken
impl Sync for Xosc32kBaseToken
impl Unpin for Xosc32kBaseToken
impl UnwindSafe for Xosc32kBaseToken
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