pub struct CommitteeMemory<N: Network> { /* private fields */ }
Expand description
An in-memory committee storage.
Trait Implementations§
Source§impl<N: Clone + Network> Clone for CommitteeMemory<N>
impl<N: Clone + Network> Clone for CommitteeMemory<N>
Source§fn clone(&self) -> CommitteeMemory<N>
fn clone(&self) -> CommitteeMemory<N>
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<N: Network> CommitteeStorage<N> for CommitteeMemory<N>
impl<N: Network> CommitteeStorage<N> for CommitteeMemory<N>
Source§fn open<S: Clone + Into<StorageMode>>(storage: S) -> Result<Self>
fn open<S: Clone + Into<StorageMode>>(storage: S) -> Result<Self>
Initializes the committee storage.
Source§fn current_round_map(&self) -> &Self::CurrentRoundMap
fn current_round_map(&self) -> &Self::CurrentRoundMap
Returns the current round map.
Source§fn round_to_height_map(&self) -> &Self::RoundToHeightMap
fn round_to_height_map(&self) -> &Self::RoundToHeightMap
Returns the round to height map.
Source§fn committee_map(&self) -> &Self::CommitteeMap
fn committee_map(&self) -> &Self::CommitteeMap
Returns the committee map.
Source§fn storage_mode(&self) -> &StorageMode
fn storage_mode(&self) -> &StorageMode
Returns the storage mode.
Source§fn start_atomic(&self)
fn start_atomic(&self)
Starts an atomic batch write operation.
Source§fn is_atomic_in_progress(&self) -> bool
fn is_atomic_in_progress(&self) -> bool
Checks if an atomic batch is in progress.
Source§fn atomic_checkpoint(&self)
fn atomic_checkpoint(&self)
Checkpoints the atomic batch.
Source§fn clear_latest_checkpoint(&self)
fn clear_latest_checkpoint(&self)
Clears the latest atomic batch checkpoint.
Source§fn atomic_rewind(&self)
fn atomic_rewind(&self)
Rewinds the atomic batch to the previous checkpoint.
Source§fn abort_atomic(&self)
fn abort_atomic(&self)
Aborts an atomic batch write operation.
Source§fn finish_atomic(&self) -> Result<()>
fn finish_atomic(&self) -> Result<()>
Finishes an atomic batch write operation.
Source§fn insert(&self, next_height: u32, committee: Committee<N>) -> Result<()>
fn insert(&self, next_height: u32, committee: Committee<N>) -> Result<()>
Stores the given
(next height, committee)
pair into storage,
and indexes storage up to the next round
.Source§fn remove(&self, height: u32) -> Result<()>
fn remove(&self, height: u32) -> Result<()>
Removes the committee for the given
height
, in the process
removing all round to height entries back to the previous committee.Source§fn current_round(&self) -> Result<u64>
fn current_round(&self) -> Result<u64>
Returns the current round.
Source§fn current_height(&self) -> Result<u32>
fn current_height(&self) -> Result<u32>
Returns the current height.
Source§fn current_committee(&self) -> Result<Committee<N>>
fn current_committee(&self) -> Result<Committee<N>>
Returns the current committee.
Source§fn get_height_for_round(&self, round: u64) -> Result<Option<u32>>
fn get_height_for_round(&self, round: u64) -> Result<Option<u32>>
Returns the height for the given
round
.Auto Trait Implementations§
impl<N> Freeze for CommitteeMemory<N>
impl<N> !RefUnwindSafe for CommitteeMemory<N>
impl<N> Send for CommitteeMemory<N>
impl<N> Sync for CommitteeMemory<N>
impl<N> Unpin for CommitteeMemory<N>
impl<N> !UnwindSafe for CommitteeMemory<N>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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