Enum time::Weekday[][src]

pub enum Weekday {
    Monday,
    Tuesday,
    Wednesday,
    Thursday,
    Friday,
    Saturday,
    Sunday,
}

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

impl Weekday[src]

pub const fn previous(self) -> Self[src]

Get the previous weekday.

assert_eq!(Weekday::Tuesday.previous(), Weekday::Monday);
Run

pub const fn next(self) -> Self[src]

Get the next weekday.

assert_eq!(Weekday::Monday.next(), Weekday::Tuesday);
Run

pub const fn number_from_monday(self) -> u8[src]

Get the one-indexed number of days from Monday.

assert_eq!(Weekday::Monday.number_from_monday(), 1);
Run

pub const fn number_from_sunday(self) -> u8[src]

Get the one-indexed number of days from Sunday.

assert_eq!(Weekday::Monday.number_from_sunday(), 2);
Run

pub const fn number_days_from_monday(self) -> u8[src]

Get the zero-indexed number of days from Monday.

assert_eq!(Weekday::Monday.number_days_from_monday(), 0);
Run

pub const fn number_days_from_sunday(self) -> u8[src]

Get the zero-indexed number of days from Sunday.

assert_eq!(Weekday::Monday.number_days_from_sunday(), 1);
Run

Trait Implementations

impl Arbitrary for Weekday[src]

This is supported on crate feature quickcheck only.

impl Clone for Weekday[src]

impl Copy for Weekday[src]

impl Debug for Weekday[src]

impl<'a> Deserialize<'a> for Weekday[src]

This is supported on crate feature serde only.

impl Display for Weekday[src]

impl Eq for Weekday[src]

impl Hash for Weekday[src]

impl PartialEq<Weekday> for Weekday[src]

impl Serialize for Weekday[src]

This is supported on crate feature serde only.

impl StructuralEq for Weekday[src]

impl StructuralPartialEq for Weekday[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.