[][src]Struct crev_wot::Timestamped

pub struct Timestamped<T> {
    pub date: DateTime<Utc>,
    // some fields omitted
}

A T with a timestamp

This allows easily keeping track of a most recent version of T. Typically T is some information from a timestamped proof of some kind.

Fields

date: DateTime<Utc>

Trait Implementations

impl<T: Clone> Clone for Timestamped<T>[src]

impl<T: Debug> Debug for Timestamped<T>[src]

impl<'a, T: WithReview + Content + CommonOps> From<&'a T> for Timestamped<Review>[src]

impl<T, Tz, '_> From<(&'_ DateTime<Tz>, T)> for Timestamped<T> where
    Tz: TimeZone
[src]

impl From<Trust> for Timestamped<TrustLevel>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Timestamped<T> where
    T: RefUnwindSafe

impl<T> Send for Timestamped<T> where
    T: Send

impl<T> Sync for Timestamped<T> where
    T: Sync

impl<T> Unpin for Timestamped<T> where
    T: Unpin

impl<T> UnwindSafe for Timestamped<T> where
    T: UnwindSafe

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