[][src]Struct aliri_core::clock::UnixTime

#[repr(transparent)]pub struct UnixTime(pub u64);

Unix time

Unix time as represented by the number of seconds elapsed since the beginning of the Unix epoch on 1970/01/01 at 00:00:00 UTC.

Trait Implementations

impl Clone for UnixTime[src]

impl Copy for UnixTime[src]

impl Debug for UnixTime[src]

impl Default for UnixTime[src]

impl<'de> Deserialize<'de> for UnixTime[src]

impl Eq for UnixTime[src]

impl From<SystemTime> for UnixTime[src]

impl Ord for UnixTime[src]

impl PartialEq<UnixTime> for UnixTime[src]

impl PartialOrd<UnixTime> for UnixTime[src]

impl Serialize for UnixTime[src]

impl StructuralEq for UnixTime[src]

impl StructuralPartialEq for UnixTime[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.