pub enum DynMode {
ClockMode,
CrystalMode,
}
Expand description
Value-level enum identifying one of two possible XOSC32K operating modes
The XOSC32K clock can be sourced from either an external clock or crystal oscillator. The variants of this enum identify one of these two possible operating modes.
DynMode
is the value-level equivalent of Mode
.
Variants§
Trait Implementations§
impl Copy for DynMode
impl Eq for DynMode
impl StructuralPartialEq for DynMode
Auto Trait Implementations§
impl Freeze for DynMode
impl RefUnwindSafe for DynMode
impl Send for DynMode
impl Sync for DynMode
impl Unpin for DynMode
impl UnwindSafe for DynMode
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