pub enum ClrWakeTimer {
Disable = 0,
Enable = 1,
}Expand description
Clear Wake Timer
Value on reset: 0
Variants§
Disable = 0
0: No effect.
Enable = 1
1: Clears the wake timer counter and halts operation until a new count value is loaded.
Trait Implementations§
Source§impl Clone for ClrWakeTimer
impl Clone for ClrWakeTimer
Source§fn clone(&self) -> ClrWakeTimer
fn clone(&self) -> ClrWakeTimer
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 ClrWakeTimer
Source§impl Debug for ClrWakeTimer
impl Debug for ClrWakeTimer
impl Eq for ClrWakeTimer
Source§impl From<ClrWakeTimer> for bool
impl From<ClrWakeTimer> for bool
Source§fn from(variant: ClrWakeTimer) -> Self
fn from(variant: ClrWakeTimer) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClrWakeTimer
impl PartialEq for ClrWakeTimer
Source§fn eq(&self, other: &ClrWakeTimer) -> bool
fn eq(&self, other: &ClrWakeTimer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClrWakeTimer
Auto Trait Implementations§
impl Freeze for ClrWakeTimer
impl RefUnwindSafe for ClrWakeTimer
impl Send for ClrWakeTimer
impl Sync for ClrWakeTimer
impl Unpin for ClrWakeTimer
impl UnsafeUnpin for ClrWakeTimer
impl UnwindSafe for ClrWakeTimer
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