Enum chrono::Weekday
[−]
[src]
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
Mon | Monday. | |
Tue | Tuesday. | |
Wed | Wednesday. | |
Thu | Thursday. | |
Fri | Friday. | |
Sat | Saturday. | |
Sun | Sunday. |
Methods
impl Weekday
fn succ(&self) -> Weekday
The next day in the week.
w : |
Mon |
Tue |
Wed |
Thu |
Fri |
Sat |
Sun |
---|---|---|---|---|---|---|---|
w.succ() : |
Tue |
Wed |
Thu |
Fri |
Sat |
Sun |
Mon |
fn pred(&self) -> Weekday
The previous day in the week.
w : |
Mon |
Tue |
Wed |
Thu |
Fri |
Sat |
Sun |
---|---|---|---|---|---|---|---|
w.pred() : |
Sun |
Mon |
Tue |
Wed |
Thu |
Fri |
Sat |
fn number_from_monday(&self) -> u32
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 |
fn number_from_sunday(&self) -> u32
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 |
fn num_days_from_monday(&self) -> u32
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 |
fn num_days_from_sunday(&self) -> u32
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 FromPrimitive for Weekday
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.