pub enum Alarm2Matching {
OncePerMinute,
MinutesMatch,
HoursAndMinutesMatch,
AllMatch,
}
Expand description
Alarm2 trigger rate
Variants§
OncePerMinute
Alarm once per minute. (00 seconds of every minute)
MinutesMatch
Alarm when minutes match.
HoursAndMinutesMatch
Alarm when hours and minutes match.
AllMatch
Alarm when date/weekday, hours and minutes match.
Trait Implementations§
Source§impl Clone for Alarm2Matching
impl Clone for Alarm2Matching
Source§fn clone(&self) -> Alarm2Matching
fn clone(&self) -> Alarm2Matching
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 Alarm2Matching
impl Debug for Alarm2Matching
Source§impl PartialEq for Alarm2Matching
impl PartialEq for Alarm2Matching
impl Copy for Alarm2Matching
impl StructuralPartialEq for Alarm2Matching
Auto Trait Implementations§
impl Freeze for Alarm2Matching
impl RefUnwindSafe for Alarm2Matching
impl Send for Alarm2Matching
impl Sync for Alarm2Matching
impl Unpin for Alarm2Matching
impl UnwindSafe for Alarm2Matching
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