pub enum Weekday {
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday,
Sunday,
}
Expand description
Days of the week.
As order is dependent on context (Sunday could be either
two days after or five days before Friday), this type does not implement
PartialOrd
or Ord
.
Variants
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Sunday
Implementations
sourceimpl Weekday
impl Weekday
sourcepub const fn previous(self) -> Self
pub const fn previous(self) -> Self
Get the previous weekday.
assert_eq!(Weekday::Tuesday.previous(), Weekday::Monday);
This function is const fn
when using rustc >= 1.46.
sourcepub const fn next(self) -> Self
pub const fn next(self) -> Self
Get the next weekday.
assert_eq!(Weekday::Monday.next(), Weekday::Tuesday);
This function is const fn
when using rustc >= 1.46.
sourcepub const fn iso_weekday_number(self) -> u8
pub const fn iso_weekday_number(self) -> u8
Get the ISO 8601 weekday number. Equivalent to
Weekday::number_from_monday
.
assert_eq!(Weekday::Monday.iso_weekday_number(), 1);
sourcepub const fn number_from_monday(self) -> u8
pub const fn number_from_monday(self) -> u8
Get the one-indexed number of days from Monday.
assert_eq!(Weekday::Monday.number_from_monday(), 1);
sourcepub const fn number_from_sunday(self) -> u8
pub const fn number_from_sunday(self) -> u8
Get the one-indexed number of days from Sunday.
assert_eq!(Weekday::Monday.number_from_sunday(), 2);
sourcepub const fn number_days_from_monday(self) -> u8
pub const fn number_days_from_monday(self) -> u8
Get the zero-indexed number of days from Monday.
assert_eq!(Weekday::Monday.number_days_from_monday(), 0);
sourcepub const fn number_days_from_sunday(self) -> u8
pub const fn number_days_from_sunday(self) -> u8
Get the zero-indexed number of days from Sunday.
assert_eq!(Weekday::Monday.number_days_from_sunday(), 1);
Trait Implementations
impl Copy for Weekday
impl Eq for Weekday
impl StructuralEq for Weekday
impl StructuralPartialEq for Weekday
Auto Trait Implementations
impl RefUnwindSafe for Weekday
impl Send for Weekday
impl Sync for Weekday
impl Unpin for Weekday
impl UnwindSafe for Weekday
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more