pub struct VoteAccounts { /* private fields */ }
Implementations§
source§impl VoteAccounts
impl VoteAccounts
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn staked_nodes(&self) -> Arc<HashMap<Pubkey, u64>>
pub fn get(&self, pubkey: &Pubkey) -> Option<&VoteAccount>
pub fn get_delegated_stake(&self, pubkey: &Pubkey) -> u64
pub fn iter(&self) -> impl Iterator<Item = (&Pubkey, &VoteAccount)>
pub fn delegated_stakes(&self) -> impl Iterator<Item = (&Pubkey, u64)>
pub fn find_max_by_delegated_stake(&self) -> Option<&VoteAccount>
pub fn insert( &mut self, pubkey: Pubkey, (stake, vote_account): (u64, VoteAccount), )
pub fn remove(&mut self, pubkey: &Pubkey) -> Option<(u64, VoteAccount)>
pub fn add_stake(&mut self, pubkey: &Pubkey, delta: u64)
pub fn sub_stake(&mut self, pubkey: &Pubkey, delta: u64)
Trait Implementations§
source§impl AbiExample for VoteAccounts
impl AbiExample for VoteAccounts
source§impl AsRef<HashMap<Pubkey, (u64, VoteAccount)>> for VoteAccounts
impl AsRef<HashMap<Pubkey, (u64, VoteAccount)>> for VoteAccounts
source§fn as_ref(&self) -> &VoteAccountsHashMap
fn as_ref(&self) -> &VoteAccountsHashMap
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for VoteAccounts
impl Clone for VoteAccounts
source§fn clone(&self) -> VoteAccounts
fn clone(&self) -> VoteAccounts
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 VoteAccounts
impl Debug for VoteAccounts
source§impl Default for VoteAccounts
impl Default for VoteAccounts
source§impl<'de> Deserialize<'de> for VoteAccounts
impl<'de> Deserialize<'de> for VoteAccounts
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 From<&VoteAccounts> for Arc<VoteAccountsHashMap>
impl From<&VoteAccounts> for Arc<VoteAccountsHashMap>
source§fn from(vote_accounts: &VoteAccounts) -> Self
fn from(vote_accounts: &VoteAccounts) -> Self
Converts to this type from the input type.
source§impl From<Arc<HashMap<Pubkey, (u64, VoteAccount)>>> for VoteAccounts
impl From<Arc<HashMap<Pubkey, (u64, VoteAccount)>>> for VoteAccounts
source§fn from(vote_accounts: Arc<VoteAccountsHashMap>) -> Self
fn from(vote_accounts: Arc<VoteAccountsHashMap>) -> Self
Converts to this type from the input type.
source§impl FromIterator<(Pubkey, (u64, VoteAccount))> for VoteAccounts
impl FromIterator<(Pubkey, (u64, VoteAccount))> for VoteAccounts
source§impl PartialEq for VoteAccounts
impl PartialEq for VoteAccounts
Auto Trait Implementations§
impl !Freeze for VoteAccounts
impl RefUnwindSafe for VoteAccounts
impl Send for VoteAccounts
impl Sync for VoteAccounts
impl Unpin for VoteAccounts
impl UnwindSafe for VoteAccounts
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<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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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