anvil_zksync_core::node::time

Trait ReadTime

Source
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§

Source

fn dyn_cloned(&self) -> Box<dyn ReadTime>

Alternative for Clone::clone that is object safe.

Source

fn current_timestamp(&self) -> u64

Returns timestamp (in seconds) that the clock is currently on.

Trait Implementations§

Source§

impl Clone for Box<dyn ReadTime>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementors§