pub enum AlarmdpdEn {
Disable = 0,
Enable = 1,
}Expand description
RTC 1 Hz timer alarm enable for Deep power-down.
Value on reset: 0
Variants§
Disable = 0
0: Disable. A match on the 1 Hz RTC timer will not bring the part out of Deep power-down mode.
Enable = 1
1: Enable. A match on the 1 Hz RTC timer bring the part out of Deep power-down mode.
Trait Implementations§
Source§impl Clone for AlarmdpdEn
impl Clone for AlarmdpdEn
Source§fn clone(&self) -> AlarmdpdEn
fn clone(&self) -> AlarmdpdEn
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 AlarmdpdEn
impl Debug for AlarmdpdEn
Source§impl From<AlarmdpdEn> for bool
impl From<AlarmdpdEn> for bool
Source§fn from(variant: AlarmdpdEn) -> Self
fn from(variant: AlarmdpdEn) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AlarmdpdEn
impl PartialEq for AlarmdpdEn
impl Copy for AlarmdpdEn
impl Eq for AlarmdpdEn
impl StructuralPartialEq for AlarmdpdEn
Auto Trait Implementations§
impl Freeze for AlarmdpdEn
impl RefUnwindSafe for AlarmdpdEn
impl Send for AlarmdpdEn
impl Sync for AlarmdpdEn
impl Unpin for AlarmdpdEn
impl UnwindSafe for AlarmdpdEn
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