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: Eq + Hash> Eq for RoundState<Id>[src]

impl<Id: PartialEq + Eq + Hash> PartialEq<RoundState<Id>> 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

impl<Id> Send for RoundState<Id> where
    Id: Send

impl<Id> Sync for RoundState<Id> where
    Id: Sync

impl<Id> Unpin for RoundState<Id> where
    Id: Unpin

impl<Id> UnwindSafe for RoundState<Id> where
    Id: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.