Enum time::Weekday[][src]

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

Get the previous weekday.

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

This function is const fn when using rustc >= 1.46.

Get the next weekday.

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

This function is const fn when using rustc >= 1.46.

Get the ISO 8601 weekday number. Equivalent to Weekday::number_from_monday.

assert_eq!(Weekday::Monday.iso_weekday_number(), 1);

Get the one-indexed number of days from Monday.

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

Get the one-indexed number of days from Sunday.

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

Get the zero-indexed number of days from Monday.

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

Get the zero-indexed number of days from Sunday.

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.