pub enum UpdatePeriod {
Hourly,
Daily,
Weekly,
Monthly,
Yearly,
}Expand description
Valid update period values
Variants§
Hourly
Update hourly
Daily
Update daily
Weekly
Update weekly
Monthly
Update monthly
Yearly
Update yearly
Implementations§
Trait Implementations§
Source§impl Clone for UpdatePeriod
impl Clone for UpdatePeriod
Source§fn clone(&self) -> UpdatePeriod
fn clone(&self) -> UpdatePeriod
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 UpdatePeriod
impl Debug for UpdatePeriod
Source§impl PartialEq for UpdatePeriod
impl PartialEq for UpdatePeriod
impl Copy for UpdatePeriod
impl Eq for UpdatePeriod
impl StructuralPartialEq for UpdatePeriod
Auto Trait Implementations§
impl Freeze for UpdatePeriod
impl RefUnwindSafe for UpdatePeriod
impl Send for UpdatePeriod
impl Sync for UpdatePeriod
impl Unpin for UpdatePeriod
impl UnwindSafe for UpdatePeriod
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