#[non_exhaustive]pub enum WeekNumberRepr {
    Iso,
    Sunday,
    Monday,
}Expand description
The representation used for the week number.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Iso
Week 1 is the week that contains January 4.
Sunday
Week 1 begins on the first Sunday of the calendar year.
Monday
Week 1 begins on the first Monday of the calendar year.
Trait Implementations§
Source§impl Clone for WeekNumberRepr
 
impl Clone for WeekNumberRepr
Source§fn clone(&self) -> WeekNumberRepr
 
fn clone(&self) -> WeekNumberRepr
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 WeekNumberRepr
 
impl Debug for WeekNumberRepr
Source§impl Default for WeekNumberRepr
Creates a modifier that indicates that the value uses the Iso representation.
 
impl Default for WeekNumberRepr
Creates a modifier that indicates that the value uses the Iso representation.
Source§fn default() -> WeekNumberRepr
 
fn default() -> WeekNumberRepr
Returns the “default value” for a type. Read more
Source§impl From<WeekNumberRepr> for WeekNumberRepr
 
impl From<WeekNumberRepr> for WeekNumberRepr
Source§fn from(modifier: WeekNumberRepr) -> WeekNumberRepr
 
fn from(modifier: WeekNumberRepr) -> WeekNumberRepr
Converts to this type from the input type.
Source§impl PartialEq for WeekNumberRepr
 
impl PartialEq for WeekNumberRepr
impl Copy for WeekNumberRepr
impl Eq for WeekNumberRepr
impl StructuralPartialEq for WeekNumberRepr
Auto Trait Implementations§
impl Freeze for WeekNumberRepr
impl RefUnwindSafe for WeekNumberRepr
impl Send for WeekNumberRepr
impl Sync for WeekNumberRepr
impl Unpin for WeekNumberRepr
impl UnwindSafe for WeekNumberRepr
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.