Struct af_core::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 as_rfc3339(&self) -> impl Display[src]

Formats the time according to RFC 3339.

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

Returns the date component of the time.

pub fn elapsed(&self) -> Duration[src]

Returns the duration elapsed since this time occurred.

If the time is in the future, this function returns Duration::ZERO.

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

Format the time for display.

pub fn hms(&self) -> (usize, usize, usize)[src]

Returns the hour, minute, and second numbers.

Equivalent to (time.hour(), time.minute(), time.second()).

pub fn hour(&self) -> usize[src]

Returns the hour from 0 to 23.

pub fn minute(&self) -> usize[src]

Returns the minute from 0 to 59.

pub fn second(&self) -> usize[src]

Returns the second number from 0 to 59.

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

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

Returns a new time at the start of the hour of this time.

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 Add<Time> for Span[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<Time> for Span[src]

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

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

impl Hash 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> BorrowToSql for T where
    T: ToSql
[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>,