pub struct CommitteeMemory<N>where
N: Network,{ /* private fields */ }Expand description
An in-memory committee storage.
Trait Implementations§
Source§impl<N> Clone for CommitteeMemory<N>
impl<N> Clone for CommitteeMemory<N>
Source§fn clone(&self) -> CommitteeMemory<N>
fn clone(&self) -> CommitteeMemory<N>
Returns a duplicate 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> CommitteeStorage<N> for CommitteeMemory<N>where
N: Network,
impl<N> CommitteeStorage<N> for CommitteeMemory<N>where
N: Network,
Source§fn open(dev: Option<u16>) -> Result<CommitteeMemory<N>, Error>
fn open(dev: Option<u16>) -> Result<CommitteeMemory<N>, Error>
Initializes the committee storage.
Source§fn current_round_map(
&self,
) -> &<CommitteeMemory<N> as CommitteeStorage<N>>::CurrentRoundMap
fn current_round_map( &self, ) -> &<CommitteeMemory<N> as CommitteeStorage<N>>::CurrentRoundMap
Returns the current round map.
Source§fn round_to_height_map(
&self,
) -> &<CommitteeMemory<N> as CommitteeStorage<N>>::RoundToHeightMap
fn round_to_height_map( &self, ) -> &<CommitteeMemory<N> as CommitteeStorage<N>>::RoundToHeightMap
Returns the round to height map.
Source§fn committee_map(
&self,
) -> &<CommitteeMemory<N> as CommitteeStorage<N>>::CommitteeMap
fn committee_map( &self, ) -> &<CommitteeMemory<N> as CommitteeStorage<N>>::CommitteeMap
Returns the committee map.
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 insert(&self, next_height: u32, committee: Committee<N>) -> Result<(), Error>
fn insert(&self, next_height: u32, committee: Committee<N>) -> Result<(), Error>
Stores the given
(next height, committee) pair into storage,
and indexes storage up to the next round.Source§fn remove(&self, height: u32) -> Result<(), Error>
fn remove(&self, height: u32) -> Result<(), Error>
Removes the committee for the given
height, in the process
removing all round to height entries back to the previous committee.Source§fn get_height_for_round(&self, round: u64) -> Result<Option<u32>, Error>
fn get_height_for_round(&self, round: u64) -> Result<Option<u32>, Error>
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> 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