pub enum WeekDay {
Sunday = 1,
Monday = 2,
Tuesday = 3,
Wednesday = 4,
Thursday = 5,
Friday = 6,
Saturday = 7,
}Expand description
Weekdays in the order of 1..=7 Sun..=Sat for formatting and calculation use
Variants§
Trait Implementations§
Source§impl PartialOrd for WeekDay
impl PartialOrd for WeekDay
impl Copy for WeekDay
impl Eq for WeekDay
impl StructuralPartialEq for WeekDay
Auto Trait Implementations§
impl Freeze for WeekDay
impl RefUnwindSafe for WeekDay
impl Send for WeekDay
impl Sync for WeekDay
impl Unpin for WeekDay
impl UnwindSafe for WeekDay
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