[][src]Struct solana_sdk::clock::Clock

#[repr(C)]pub struct Clock {
    pub slot: Slot,
    pub segment: Segment,
    pub epoch: Epoch,
    pub leader_schedule_epoch: Epoch,
    pub unix_timestamp: UnixTimestamp,
}

Clock represents network time. Members of Clock start from 0 upon network boot. The best way to map Clock to wallclock time is to use current Slot, as Epochs vary in duration (they start short and grow as the network progresses).

Fields

slot: Slot

the current network/bank Slot

segment: Segment

the current Segment, used for archiver rounds

epoch: Epoch

the bank Epoch

leader_schedule_epoch: Epoch

the future Epoch for which the leader schedule has most recently been calculated

unix_timestamp: UnixTimestamp

computed from genesis creation time and network time in slots, drifts!

Trait Implementations

impl Debug for Clock[src]

impl Default for Clock[src]

impl<'de> Deserialize<'de> for Clock[src]

impl PartialEq<Clock> for Clock[src]

impl Serialize for Clock[src]

impl StructuralPartialEq for Clock[src]

impl Sysvar for Clock[src]

impl SysvarId for Clock[src]

Auto Trait Implementations

impl RefUnwindSafe for Clock

impl Send for Clock

impl Sync for Clock

impl Unpin for Clock

impl UnwindSafe for Clock

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> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.