pub trait ReadTime: Send + Sync {
// Required methods
fn dyn_cloned(&self) -> Box<dyn ReadTime>;
fn current_timestamp(&self) -> u64;
}
Expand description
Read-only view on time.
Required Methods§
Sourcefn dyn_cloned(&self) -> Box<dyn ReadTime>
fn dyn_cloned(&self) -> Box<dyn ReadTime>
Alternative for Clone::clone
that is object safe.
Sourcefn current_timestamp(&self) -> u64
fn current_timestamp(&self) -> u64
Returns timestamp (in seconds) that the clock is currently on.