Struct indigo::time::Date[][src]

pub struct Date(_);

Implementations

impl Date[src]

pub fn format<'a>(&self, fmt: &'a str) -> impl Display + 'a[src]

Formats the date according to the given format string.

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

Returns the next day.

pub fn prev(&self) -> Self[src]

Returns the previous day.

pub fn to_local_time(&self) -> Time[src]

Convert the date to a time in the local time zone.

pub fn to_time(&self, zone: Zone) -> Time[src]

Converts the date to a time in the given time zone.

pub fn to_utc_time(&self) -> Time[src]

Convert the date to a time in UTC.

Trait Implementations

impl Clone for Date[src]

impl Copy for Date[src]

impl Debug for Date[src]

impl Display for Date[src]

impl Eq for Date[src]

impl From<NaiveDate> for Date[src]

impl<'a> FromSql<'a> for Date[src]

impl Ord for Date[src]

impl PartialEq<Date> for Date[src]

impl PartialOrd<Date> for Date[src]

impl StructuralEq for Date[src]

impl StructuralPartialEq for Date[src]

impl ToSql for Date[src]

Auto Trait Implementations

impl RefUnwindSafe for Date

impl Send for Date

impl Sync for Date

impl Unpin for Date

impl UnwindSafe for Date

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> From<T> for T[src]

impl<T> FromSqlOwned for T where
    T: for<'a> FromSql<'a>, 
[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,