Struct tcgeneric::time::NetworkTime [−][src]
pub struct NetworkTime { /* fields omitted */ }Implementations
A Tinychain timestamp, used for absolute ordering of transactions.
The current time.
Constructs a new timestamp from a duration in nanoseconds since the Unix epoch.
Trait Implementations
type Output = NetworkTime
type Output = NetworkTimeThe resulting type after applying the + operator.
Performs the + operation. Read more
type Output = NetworkTime
type Output = NetworkTimeThe resulting type after applying the + operator.
Performs the + operation. Read more
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for NetworkTimeimpl Send for NetworkTimeimpl Sync for NetworkTimeimpl Unpin for NetworkTimeimpl UnwindSafe for NetworkTimeBlanket Implementations
Mutably borrows from an owned value. Read more
Returns true if self can be cast into the target type T.
Test if value can be cast into Self.
Returns Some(Self) if the source value can be cast into Self, otherwise None.
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err,
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, Returns Ok(Self) if the source value can be cast into Self, otherwise calls on_err.
Test if self can be cast into T.
Returns Some(T) if self can be cast into T, otherwise None.
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err,
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, Returns Ok(T) if self can be cast into T, otherwise calls on_err.