[][src]Enum finality_grandpa::bitfield::Bitfield

pub enum Bitfield {
    Blank,
    Live(LiveBitfield),
}

Bitfield for tracking voters who have equivocated.

Variants

Blank

Blank bitfield,

Live bitfield,

Methods

impl Bitfield[src]

pub fn merge(&self, other: &Self) -> Result<Self, Error>[src]

Combine two bitfields. Fails if they have conflicting shared data (i.e. they come from different contexts).

pub fn overlap(&self, other: &Self) -> Result<Self, Error>[src]

Find overlap weight (prevote, precommit) between this bitfield and another.

pub fn total_weight<F: Fn(usize) -> u64>(&self, lookup: F) -> (u64, u64)[src]

Find total equivocating weight (prevote, precommit). Provide a function for looking up voter weight.

Trait Implementations

impl Clone for Bitfield[src]

impl Default for Bitfield[src]

impl Eq for Bitfield[src]

impl PartialEq<Bitfield> for Bitfield[src]

impl Debug for Bitfield[src]

impl StructuralPartialEq for Bitfield[src]

impl StructuralEq for Bitfield[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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