pub enum FallbackMode {
Fs,
StandbyXosc,
StandbyRc,
}Expand description
The mode the chip returns to after a transmission or reception, from Table 13-23.
Variants§
Fs
Frequency synthesis (0x40).
StandbyXosc
Standby on the crystal (0x30).
StandbyRc
Standby on the RC oscillator, the default (0x20).
Implementations§
Trait Implementations§
Source§impl Clone for FallbackMode
impl Clone for FallbackMode
Source§fn clone(&self) -> FallbackMode
fn clone(&self) -> FallbackMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FallbackMode
Source§impl Debug for FallbackMode
impl Debug for FallbackMode
impl Eq for FallbackMode
Source§impl Hash for FallbackMode
impl Hash for FallbackMode
Source§impl PartialEq for FallbackMode
impl PartialEq for FallbackMode
Source§fn eq(&self, other: &FallbackMode) -> bool
fn eq(&self, other: &FallbackMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FallbackMode
Auto Trait Implementations§
impl Freeze for FallbackMode
impl RefUnwindSafe for FallbackMode
impl Send for FallbackMode
impl Sync for FallbackMode
impl Unpin for FallbackMode
impl UnsafeUnpin for FallbackMode
impl UnwindSafe for FallbackMode
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