Struct solana_program::slot_history::SlotHistory
source · #[repr(C)]pub struct SlotHistory {
pub bits: BitVec<u64>,
pub next_slot: Slot,
}
Fields§
§bits: BitVec<u64>
§next_slot: Slot
Implementations§
Trait Implementations§
source§impl Clone for SlotHistory
impl Clone for SlotHistory
source§fn clone(&self) -> SlotHistory
fn clone(&self) -> SlotHistory
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SlotHistory
impl Debug for SlotHistory
source§impl Default for SlotHistory
impl Default for SlotHistory
source§impl<'de> Deserialize<'de> for SlotHistory
impl<'de> Deserialize<'de> for SlotHistory
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<SlotHistory> for SlotHistory
impl PartialEq<SlotHistory> for SlotHistory
source§fn eq(&self, other: &SlotHistory) -> bool
fn eq(&self, other: &SlotHistory) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SlotHistory
impl Serialize for SlotHistory
source§impl Sysvar for SlotHistory
impl Sysvar for SlotHistory
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