[][src]Enum chrono::Weekday

pub enum Weekday {
    Mon,
    Tue,
    Wed,
    Thu,
    Fri,
    Sat,
    Sun,
}

The day of week.

The order of the days of week depends on the context. (This is why this type does not implement PartialOrd or Ord traits.) One should prefer *_from_monday or *_from_sunday methods to get the correct result.

Variants

Monday.

Tuesday.

Wednesday.

Thursday.

Friday.

Saturday.

Sunday.

Methods

impl Weekday
[src]

The next day in the week.

w: Mon Tue Wed Thu Fri Sat Sun
w.succ(): Tue Wed Thu Fri Sat Sun Mon

The previous day in the week.

w: Mon Tue Wed Thu Fri Sat Sun
w.pred(): Sun Mon Tue Wed Thu Fri Sat

Returns a day-of-week number starting from Monday = 1. (ISO 8601 weekday number)

w: Mon Tue Wed Thu Fri Sat Sun
w.number_from_monday(): 1 2 3 4 5 6 7

Returns a day-of-week number starting from Sunday = 1.

w: Mon Tue Wed Thu Fri Sat Sun
w.number_from_sunday(): 2 3 4 5 6 7 1

Returns a day-of-week number starting from Monday = 0.

w: Mon Tue Wed Thu Fri Sat Sun
w.num_days_from_monday(): 0 1 2 3 4 5 6

Returns a day-of-week number starting from Sunday = 0.

w: Mon Tue Wed Thu Fri Sat Sun
w.num_days_from_sunday(): 1 2 3 4 5 6 0

Trait Implementations

impl Clone for Weekday
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Weekday
[src]

impl Eq for Weekday
[src]

impl PartialEq<Weekday> for Weekday
[src]

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

This method tests for !=.

impl Debug for Weekday
[src]

Formats the value using the given formatter. Read more

impl FromPrimitive for Weekday
[src]

Any weekday can be represented as an integer from 0 to 6, which equals to Weekday::num_days_from_monday in this implementation. Do not heavily depend on this though; use explicit methods whenever possible.

Convert an i64 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u64 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an i128 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u128 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert a f32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert a f64 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl Encodable for Weekday
[src]

Serialize a value using an Encoder.

impl Decodable for Weekday
[src]

Deserialize a value using a Decoder.

Auto Trait Implementations

impl Send for Weekday

impl Sync for Weekday

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

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

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more