pub enum ScheduleInterval {
None,
Seconds(i64),
Minutes(i64),
Hours(i64),
Days(i64),
}
Variants§
Trait Implementations§
Source§impl Clone for ScheduleInterval
impl Clone for ScheduleInterval
Source§fn clone(&self) -> ScheduleInterval
fn clone(&self) -> ScheduleInterval
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 ScheduleInterval
impl Debug for ScheduleInterval
Source§impl PartialEq for ScheduleInterval
impl PartialEq for ScheduleInterval
impl Copy for ScheduleInterval
impl StructuralPartialEq for ScheduleInterval
Auto Trait Implementations§
impl Freeze for ScheduleInterval
impl RefUnwindSafe for ScheduleInterval
impl Send for ScheduleInterval
impl Sync for ScheduleInterval
impl Unpin for ScheduleInterval
impl UnwindSafe for ScheduleInterval
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