Enum time::format_description::modifier::WeekNumberRepr
source · [−]#[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
sourceimpl Clone for WeekNumberRepr
impl Clone for WeekNumberRepr
sourcefn clone(&self) -> WeekNumberRepr
fn clone(&self) -> WeekNumberRepr
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for WeekNumberRepr
impl Debug for WeekNumberRepr
sourceimpl Default for WeekNumberRepr
impl Default for WeekNumberRepr
Creates a modifier that indicates that the value uses the Iso
representation.
sourceimpl PartialEq<WeekNumberRepr> for WeekNumberRepr
impl PartialEq<WeekNumberRepr> for WeekNumberRepr
sourcefn eq(&self, other: &WeekNumberRepr) -> bool
fn eq(&self, other: &WeekNumberRepr) -> bool
impl Copy for WeekNumberRepr
impl Eq for WeekNumberRepr
impl StructuralEq for WeekNumberRepr
impl StructuralPartialEq for WeekNumberRepr
Auto Trait Implementations
impl RefUnwindSafe for WeekNumberRepr
impl Send for WeekNumberRepr
impl Sync for WeekNumberRepr
impl Unpin for WeekNumberRepr
impl UnwindSafe for WeekNumberRepr
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more