pub struct RpcVoteAccountInfo {
pub vote_pubkey: String,
pub node_pubkey: String,
pub activated_stake: u64,
pub commission: u8,
pub epoch_vote_account: bool,
pub epoch_credits: Vec<(Epoch, u64, u64)>,
pub last_vote: u64,
pub root_slot: Slot,
}
Fields§
§vote_pubkey: String
Vote account address, as base-58 encoded string
node_pubkey: String
The validator identity, as base-58 encoded string
activated_stake: u64
The current stake, in lamports, delegated to this vote account
commission: u8
An 8-bit integer used as a fraction (commission/MAX_U8) for rewards payout
epoch_vote_account: bool
Whether this account is staked for the current epoch
epoch_credits: Vec<(Epoch, u64, u64)>
History of how many credits earned by the end of each epoch each tuple is (Epoch, credits, prev_credits)
last_vote: u64
Most recent slot voted on by this vote account (0 if no votes exist)
root_slot: Slot
Current root slot for this vote account (0 if not root slot exists)
Trait Implementations§
Source§impl Clone for RpcVoteAccountInfo
impl Clone for RpcVoteAccountInfo
Source§fn clone(&self) -> RpcVoteAccountInfo
fn clone(&self) -> RpcVoteAccountInfo
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 RpcVoteAccountInfo
impl Debug for RpcVoteAccountInfo
Source§impl<'de> Deserialize<'de> for RpcVoteAccountInfo
impl<'de> Deserialize<'de> for RpcVoteAccountInfo
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
Auto Trait Implementations§
impl Freeze for RpcVoteAccountInfo
impl RefUnwindSafe for RpcVoteAccountInfo
impl Send for RpcVoteAccountInfo
impl Sync for RpcVoteAccountInfo
impl Unpin for RpcVoteAccountInfo
impl UnwindSafe for RpcVoteAccountInfo
Blanket Implementations§
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more