[][src]Struct solana_vote_program::vote_state::Vote

pub struct Vote {
    pub slots: Vec<Slot>,
    pub hash: Hash,
    pub timestamp: Option<UnixTimestamp>,
}

Fields

slots: Vec<Slot>

A stack of votes starting with the oldest vote

hash: Hash

signature of the bank's state at the last slot

timestamp: Option<UnixTimestamp>

processing timestamp of last slot

Implementations

impl Vote[src]

pub fn new(slots: Vec<Slot>, hash: Hash) -> Self[src]

pub fn last_voted_slot(&self) -> Option<Slot>[src]

Trait Implementations

impl AbiExample for Vote[src]

impl Clone for Vote[src]

impl Debug for Vote[src]

impl Default for Vote[src]

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

impl Eq for Vote[src]

impl PartialEq<Vote> for Vote[src]

impl Serialize for Vote[src]

impl StructuralEq for Vote[src]

impl StructuralPartialEq for Vote[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AbiEnumVisitor for T where
    T: AbiExample + 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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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>,