#[repr(u8)]pub enum Misc0TogStopModeConfig {
STOP_MODE_CONFIG_0 = 0,
STOP_MODE_CONFIG_1 = 1,
STOP_MODE_CONFIG_2 = 2,
STOP_MODE_CONFIG_3 = 3,
}Variants§
STOP_MODE_CONFIG_0 = 0
All analog except rtc powered down on stop mode assertion. XtalOsc=on, RCOsc=off;
STOP_MODE_CONFIG_1 = 1
Certain analog functions such as certain regulators left up. XtalOsc=on, RCOsc=off;
STOP_MODE_CONFIG_2 = 2
XtalOsc=off, RCOsc=on, Old BG=on, New BG=off.
STOP_MODE_CONFIG_3 = 3
XtalOsc=off, RCOsc=on, Old BG=off, New BG=on.
Implementations§
Trait Implementations§
Source§impl Clone for Misc0TogStopModeConfig
impl Clone for Misc0TogStopModeConfig
Source§fn clone(&self) -> Misc0TogStopModeConfig
fn clone(&self) -> Misc0TogStopModeConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Misc0TogStopModeConfig
impl Debug for Misc0TogStopModeConfig
Source§impl From<Misc0TogStopModeConfig> for u8
impl From<Misc0TogStopModeConfig> for u8
Source§fn from(val: Misc0TogStopModeConfig) -> u8
fn from(val: Misc0TogStopModeConfig) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Misc0TogStopModeConfig
impl From<u8> for Misc0TogStopModeConfig
Source§fn from(val: u8) -> Misc0TogStopModeConfig
fn from(val: u8) -> Misc0TogStopModeConfig
Converts to this type from the input type.
Source§impl Ord for Misc0TogStopModeConfig
impl Ord for Misc0TogStopModeConfig
Source§fn cmp(&self, other: &Misc0TogStopModeConfig) -> Ordering
fn cmp(&self, other: &Misc0TogStopModeConfig) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Misc0TogStopModeConfig
impl PartialEq for Misc0TogStopModeConfig
Source§impl PartialOrd for Misc0TogStopModeConfig
impl PartialOrd for Misc0TogStopModeConfig
impl Copy for Misc0TogStopModeConfig
impl Eq for Misc0TogStopModeConfig
impl StructuralPartialEq for Misc0TogStopModeConfig
Auto Trait Implementations§
impl Freeze for Misc0TogStopModeConfig
impl RefUnwindSafe for Misc0TogStopModeConfig
impl Send for Misc0TogStopModeConfig
impl Sync for Misc0TogStopModeConfig
impl Unpin for Misc0TogStopModeConfig
impl UnwindSafe for Misc0TogStopModeConfig
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