Struct finality_grandpa::voter::report::RoundState [−][src]
pub struct RoundState<Id: Eq + Hash> { pub total_weight: VoterWeight, pub threshold_weight: VoterWeight, pub prevote_current_weight: VoteWeight, pub prevote_ids: HashSet<Id>, pub precommit_current_weight: VoteWeight, pub precommit_ids: HashSet<Id>, }
Basic data struct for the state of a round.
Fields
total_weight: VoterWeight
Total weight of all votes.
threshold_weight: VoterWeight
The threshold voter weight.
prevote_current_weight: VoteWeight
Current weight of the prevotes.
prevote_ids: HashSet<Id>
The identities of nodes that have cast prevotes so far.
precommit_current_weight: VoteWeight
Current weight of the precommits.
precommit_ids: HashSet<Id>
The identities of nodes that have cast precommits so far.
Trait Implementations
impl<Id: Clone + Eq + Hash> Clone for RoundState<Id>
[src]
impl<Id: Clone + Eq + Hash> Clone for RoundState<Id>
[src]fn clone(&self) -> RoundState<Id>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<Id: PartialEq + Eq + Hash> PartialEq<RoundState<Id>> for RoundState<Id>
[src]
impl<Id: PartialEq + Eq + Hash> PartialEq<RoundState<Id>> for RoundState<Id>
[src]fn eq(&self, other: &RoundState<Id>) -> bool
[src]
fn ne(&self, other: &RoundState<Id>) -> bool
[src]
impl<Id: Eq + Hash> Eq for RoundState<Id>
[src]
impl<Id: Eq + Hash> StructuralEq for RoundState<Id>
[src]
impl<Id: Eq + Hash> StructuralPartialEq for RoundState<Id>
[src]
Auto Trait Implementations
impl<Id> RefUnwindSafe for RoundState<Id> where
Id: RefUnwindSafe,
Id: RefUnwindSafe,
impl<Id> Send for RoundState<Id> where
Id: Send,
Id: Send,
impl<Id> Sync for RoundState<Id> where
Id: Sync,
Id: Sync,
impl<Id> Unpin for RoundState<Id> where
Id: Unpin,
Id: Unpin,
impl<Id> UnwindSafe for RoundState<Id> where
Id: UnwindSafe,
Id: UnwindSafe,