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
ClockMode
CrystalMode
Trait Implementations
impl Copy for DynMode
impl Eq for DynMode
impl StructuralEq for DynMode
impl StructuralPartialEq for DynMode
Auto Trait Implementations
impl RefUnwindSafe for DynMode
impl Send for DynMode
impl Sync for DynMode
impl Unpin for DynMode
impl UnwindSafe for DynMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more