Struct solana_sdk::clock::Clock [−][src]
#[repr(C)]pub struct Clock { pub slot: u64, pub epoch_start_timestamp: i64, pub epoch: u64, pub leader_schedule_epoch: u64, pub unix_timestamp: i64, }
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
impl<'de> Deserialize<'de> for Clock
[src]
impl<'de> Deserialize<'de> for Clock
[src]pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Clock, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<Clock, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Serialize for Clock
[src]
impl Serialize for Clock
[src]pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralPartialEq for Clock
[src]
impl StructuralPartialEq for Clock
[src]impl Sysvar for Clock
[src]
impl Sysvar for Clock
[src]pub fn get() -> Result<Clock, ProgramError>
[src]
pub fn size_of() -> usize
[src]
pub fn from_account_info(
account_info: &AccountInfo<'_>
) -> Result<Self, ProgramError>
[src]
account_info: &AccountInfo<'_>
) -> Result<Self, ProgramError>
pub fn to_account_info(&self, account_info: &mut AccountInfo<'_>) -> Option<()>
[src]
Auto Trait Implementations
impl RefUnwindSafe for Clock
impl RefUnwindSafe for Clock
impl UnwindSafe for Clock
impl UnwindSafe for Clock
Blanket Implementations
impl<T> AbiEnumVisitor for T where
T: Serialize + ?Sized,
[src]
impl<T> AbiEnumVisitor for T where
T: Serialize + ?Sized,
[src]pub default fn visit_for_abi(
&self,
_digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
[src]
&self,
_digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
impl<T> AbiEnumVisitor for T where
T: Serialize + AbiExample + ?Sized,
[src]
impl<T> AbiEnumVisitor for T where
T: Serialize + AbiExample + ?Sized,
[src]pub default fn visit_for_abi(
&self,
digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
[src]
&self,
digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
impl<T> AbiExample for T
[src]
impl<T> AbiExample for T
[src]impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,