pub enum ChangeFreq {
Always,
Hourly,
Daily,
Weekly,
Monthly,
Yearly,
Never,
}Expand description
Change frequency
Variants§
Always
Always changing
Hourly
Hourly updates
Daily
Daily updates
Weekly
Weekly updates
Monthly
Monthly updates
Yearly
Yearly updates
Never
Never changes
Trait Implementations§
Source§impl Clone for ChangeFreq
impl Clone for ChangeFreq
Source§fn clone(&self) -> ChangeFreq
fn clone(&self) -> ChangeFreq
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 ChangeFreq
impl Debug for ChangeFreq
Source§impl PartialEq for ChangeFreq
impl PartialEq for ChangeFreq
impl Eq for ChangeFreq
impl StructuralPartialEq for ChangeFreq
Auto Trait Implementations§
impl Freeze for ChangeFreq
impl RefUnwindSafe for ChangeFreq
impl Send for ChangeFreq
impl Sync for ChangeFreq
impl Unpin for ChangeFreq
impl UnwindSafe for ChangeFreq
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.