Skip to main content

Date

Struct Date 

Source
pub struct Date { /* private fields */ }
Expand description

A calendar date.

Implementations§

Source§

impl Date

Source

pub fn new(year: i32, month: u8, day: u8) -> Option<Self>

The date year-month-day, or None when no such day exists.

Source

pub fn today_utc() -> Self

Today in UTC, from the system clock.

Source

pub fn today_local() -> Self

Today where the machine stands, from the system clock and the system time zone. Falls back to Date::today_utc where the zone is unknown; local_offset tells you which it is.

Source

pub fn parse(text: &str) -> Result<Self, String>

Reads YYYY-MM-DD: four or more digits for the year, then two for the month and the day, with a leading - for a year before the era. The calendar is checked, so 2026-02-30 is an error, and surrounding spaces are ignored.

use qframe::date::Date;

assert_eq!(Date::parse("2026-09-17"), Ok(Date::new(2026, 9, 17).expect("a real day")));
assert!(Date::parse("2026-02-30").is_err());
Source

pub fn year(self) -> i32

The year.

Source

pub fn month(self) -> u8

The month, 1 to 12.

Source

pub fn day(self) -> u8

The day of the month, from 1.

Source

pub fn to_days(self) -> i64

Days since 1970-01-01 (negative before).

Source

pub fn from_days(days: i64) -> Self

The date days after 1970-01-01. Years beyond the range of i32 are clamped to it.

Source

pub fn weekday(self) -> Weekday

The day of the week.

Source

pub fn add_days(self, days: i64) -> Self

The date days later (earlier when negative).

Source

pub fn add_months(self, months: i32) -> Self

The same day months later (earlier when negative), moved back to the last day of a shorter month: January 31 plus one month is February 28 or 29.

Source

pub fn first_of_month(self) -> Self

The first day of this date’s month.

Source

pub fn start_of_week(self, start: Weekday) -> Self

The date the week containing this date starts on, for weeks starting on start.

Source

pub fn written(self) -> String

The date the way the active language writes it, with the whole month name: September 18, 2026, 18. September 2026, 2026年9月18日.

This is the form a DatePicker shows, so an application that writes a date of its own with it puts both in the same order. Composing a date by hand is what makes one screen say September 18 beside a field saying 18 September.

A language whose month names change inside a date gives that form as quvyta.date.month-in-date-*: Russian января where the heading says Январь.

Source

pub fn written_short(self) -> String

The date with the short month name, for somewhere too narrow for written: Sep 18, 2026, 18. Sep 2026.

Source

pub fn day_and_month(self) -> String

The day and the month with the whole month name, without the year: September 18, 18 Eylül. The form a heading over a day’s own screen wants.

Source

pub fn day_and_month_short(self) -> String

The day and the short month, without the year: Sep 18, 18. Sep. The narrowest form a date field falls back to.

Trait Implementations§

Source§

impl Clone for Date

Source§

fn clone(&self) -> Date

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Date

Source§

impl Debug for Date

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Date

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Writes YYYY-MM-DD, the form Date::parse reads. A year before the era keeps its sign in front of four digits, and a year of five digits or more is written in full.

Source§

impl Eq for Date

Source§

impl FromStr for Date

Source§

fn from_str(text: &str) -> Result<Self, Self::Err>

The same as Date::parse.

Source§

type Err = String

The associated error which can be returned from parsing.
Source§

impl Hash for Date

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

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

impl Ord for Date

Source§

fn cmp(&self, other: &Date) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

fn clamp_to<R>(self, range: R) -> Self
where Self: Sized, R: ClampBounds<Self>,

🔬This is a nightly-only experimental API. (clamp_to)
Restrict a value to a certain range. Read more
Source§

impl PartialEq for Date

Source§

fn eq(&self, other: &Date) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for Date

Source§

fn partial_cmp(&self, other: &Date) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StructuralPartialEq for Date

Auto Trait Implementations§

§

impl Freeze for Date

§

impl RefUnwindSafe for Date

§

impl Send for Date

§

impl Sync for Date

§

impl Unpin for Date

§

impl UnsafeUnpin for Date

§

impl UnwindSafe for Date

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToCompactString for T
where T: Display,

Source§

impl<T> ToLine for T
where T: Display,

Source§

fn to_line(&self) -> Line<'_>

Converts the value to a Line.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToSpan for T
where T: Display,

Source§

fn to_span(&self) -> Span<'_>

Converts the value to a Span.
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T> ToText for T
where T: Display,

Source§

fn to_text(&self) -> Text<'_>

Converts the value to a Text.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.