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§
Implementations§
source§impl 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);
Runsourcepub const fn next(self) -> Self
pub const fn next(self) -> Self
Get the next weekday.
assert_eq!(Weekday::Monday.next(), Weekday::Tuesday);
Runsourcepub 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);
Runsourcepub 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);
Runsourcepub 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);
Runsourcepub 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);
Run