#[repr(u8)]pub enum AlarmRepeat {
Disabled = 0,
Year = 1,
Month = 2,
Week = 3,
Day = 4,
Hour = 5,
Minute = 6,
Second = 7,
DeciSecond = 8,
CentiSecond = 9,
}Variants§
Disabled = 0
Year = 1
Month = 2
Week = 3
Day = 4
Hour = 5
Minute = 6
Second = 7
DeciSecond = 8
Every 100th millisecond
CentiSecond = 9
Every 10th millisecond
Trait Implementations§
Source§impl Clone for AlarmRepeat
impl Clone for AlarmRepeat
Source§fn clone(&self) -> AlarmRepeat
fn clone(&self) -> AlarmRepeat
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 AlarmRepeat
Source§impl Debug for AlarmRepeat
impl Debug for AlarmRepeat
Source§impl Into<RPT_A> for AlarmRepeat
impl Into<RPT_A> for AlarmRepeat
Source§impl PartialEq for AlarmRepeat
impl PartialEq for AlarmRepeat
Source§fn eq(&self, other: &AlarmRepeat) -> bool
fn eq(&self, other: &AlarmRepeat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AlarmRepeat
Auto Trait Implementations§
impl Freeze for AlarmRepeat
impl RefUnwindSafe for AlarmRepeat
impl Send for AlarmRepeat
impl Sync for AlarmRepeat
impl Unpin for AlarmRepeat
impl UnsafeUnpin for AlarmRepeat
impl UnwindSafe for AlarmRepeat
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