[][src]Trait trade::api::timestamp::IntoTimestamped

pub trait IntoTimestamped: Sized {
    fn timestamped(self) -> Timestamped<Self> { ... }
fn with_timestamp(self, timestamp: Timestamp) -> Timestamped<Self> { ... } }

Wrap Self in a TimeStamped<Self>.

Provided Methods

Add the current timestamp to self.

Add the given timestamp to self.

Implementors

impl<T: Sized> IntoTimestamped for T
[src]