Struct solana_sdk::clock::Clock
source · pub struct Clock {
pub slot: u64,
pub epoch_start_timestamp: i64,
pub epoch: u64,
pub leader_schedule_epoch: u64,
pub unix_timestamp: i64,
}
Expand description
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: u64
the current network/bank Slot
epoch_start_timestamp: i64
the timestamp of the first Slot in this Epoch
epoch: u64
the bank Epoch
leader_schedule_epoch: u64
the future Epoch for which the leader schedule has most recently been calculated
unix_timestamp: i64
originally computed from genesis creation time and network time in slots (drifty); corrected using validator timestamp oracle as of timestamp_correction and timestamp_bounding features
Trait Implementations§
source§impl<'de> Deserialize<'de> for Clock
impl<'de> Deserialize<'de> for Clock
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<Clock, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<Clock, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<Clock> for Clock
impl PartialEq<Clock> for Clock
source§impl Serialize for Clock
impl Serialize for Clock
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl Sysvar for Clock
impl Sysvar for Clock
fn get() -> Result<Clock, ProgramError>
fn size_of() -> usize
source§fn from_account_info(
account_info: &AccountInfo<'_>
) -> Result<Self, ProgramError>
fn from_account_info( account_info: &AccountInfo<'_> ) -> Result<Self, ProgramError>
Deserializes a sysvar from its
AccountInfo
. Read more