Struct solana_program::slot_history::SlotHistory[][src]

#[repr(C)]pub struct SlotHistory {
    pub bits: BitVec<u64>,
    pub next_slot: Slot,
}

Fields

bits: BitVec<u64>next_slot: Slot

Implementations

impl SlotHistory[src]

pub fn add(&mut self, slot: Slot)[src]

pub fn check(&self, slot: Slot) -> Check[src]

pub fn oldest(&self) -> Slot[src]

pub fn newest(&self) -> Slot[src]

Trait Implementations

impl Clone for SlotHistory[src]

impl Debug for SlotHistory[src]

impl Default for SlotHistory[src]

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

impl PartialEq<SlotHistory> for SlotHistory[src]

impl Serialize for SlotHistory[src]

impl StructuralPartialEq for SlotHistory[src]

impl Sysvar for SlotHistory[src]

impl SysvarId for SlotHistory[src]

Auto Trait Implementations

Blanket Implementations

impl<T> AbiEnumVisitor for T where
    T: Serialize + AbiExample + ?Sized
[src]

impl<T> AbiEnumVisitor for T where
    T: Serialize + ?Sized
[src]

impl<T> AbiExample for T[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,