pub struct AuthorizedVoters { /* private fields */ }
Implementations§
Source§impl AuthorizedVoters
impl AuthorizedVoters
pub fn new(epoch: Epoch, pubkey: Pubkey) -> Self
pub fn insert(&mut self, epoch: Epoch, authorized_voter: Pubkey)
pub fn is_empty(&self) -> bool
pub fn first(&self) -> Option<(&u64, &Pubkey)>
pub fn last(&self) -> Option<(&u64, &Pubkey)>
pub fn len(&self) -> usize
pub fn contains(&self, epoch: Epoch) -> bool
pub fn iter(&self) -> Iter<'_, Epoch, Pubkey>
Trait Implementations§
Source§impl Clone for AuthorizedVoters
impl Clone for AuthorizedVoters
Source§fn clone(&self) -> AuthorizedVoters
fn clone(&self) -> AuthorizedVoters
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 AuthorizedVoters
impl Debug for AuthorizedVoters
Source§impl Default for AuthorizedVoters
impl Default for AuthorizedVoters
Source§fn default() -> AuthorizedVoters
fn default() -> AuthorizedVoters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthorizedVoters
impl<'de> Deserialize<'de> for AuthorizedVoters
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 for AuthorizedVoters
impl PartialEq for AuthorizedVoters
Source§impl Serialize for AuthorizedVoters
impl Serialize for AuthorizedVoters
impl Eq for AuthorizedVoters
impl StructuralPartialEq for AuthorizedVoters
Auto Trait Implementations§
impl Freeze for AuthorizedVoters
impl RefUnwindSafe for AuthorizedVoters
impl Send for AuthorizedVoters
impl Sync for AuthorizedVoters
impl Unpin for AuthorizedVoters
impl UnwindSafe for AuthorizedVoters
Blanket Implementations§
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