[][src]Struct fil_clock::ChainEpochClock

pub struct ChainEpochClock { /* fields omitted */ }

ChainEpochClock is used by the system node to assume weak clock synchrony amongst the other systems.

Implementations

impl ChainEpochClock[src]

pub fn new(genesis_time: i64) -> ChainEpochClock[src]

Returns a ChainEpochClock based on the given genesis_time (unix timestamp)

pub fn get_genesis_time(&self) -> DateTime<Utc>[src]

Returns the genesis time as a DateTime<Utc>

pub fn epoch_at_time(
    &self,
    time: &DateTime<Utc>
) -> Result<ChainEpoch, TryFromIntError>
[src]

Returns the epoch at a given time

Auto Trait Implementations

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