Struct indigo::time::Time[][src]

pub struct Time { /* fields omitted */ }

A timestamp with a time zone.

Implementations

impl Time[src]

pub const fn max_value() -> Time[src]

Returns a value representing the maximum local date and time.

pub const fn min_value() -> Time[src]

Returns a value representing the minimum local date and time.

pub fn now() -> Time[src]

Returns a value representing the current local date and time.

pub fn from_unix_ms(timestamp: i64) -> Self[src]

Returns a value representing the given Unix timestamp in milliseconds.

pub fn date(&self) -> Date[src]

Returns the date component of the time.

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

Returns the start time of the day represented by this time value.

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

Format the time for display.

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

Converts to the local time zone.

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

Converts to UTC.

pub const fn to_zone(&self, zone: Zone) -> Self[src]

Converts to the given time zone.

Trait Implementations

impl Add<Duration> for Time[src]

type Output = Self

The resulting type after applying the + operator.

impl Clone for Time[src]

impl Copy for Time[src]

impl Debug for Time[src]

impl Display for Time[src]

impl Eq for Time[src]

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

impl Ord for Time[src]

impl PartialEq<Time> for Time[src]

impl PartialOrd<Time> for Time[src]

impl Sub<Duration> for Time[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<Time> for Time[src]

type Output = Duration

The resulting type after applying the - operator.

impl ToSql for Time[src]

Auto Trait Implementations

impl RefUnwindSafe for Time

impl Send for Time

impl Sync for Time

impl Unpin for Time

impl UnwindSafe for Time

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>,