Struct finality_grandpa::Equivocation[][src]

pub struct Equivocation<Id, V, S> {
    pub round_number: u64,
    pub identity: Id,
    pub first: (V, S),
    pub second: (V, S),
}

An equivocation (double-vote) in a given round.

Fields

round_number: u64

The round number equivocated in.

identity: Id

The identity of the equivocator.

first: (V, S)

The first vote in the equivocation.

second: (V, S)

The second vote in the equivocation.

Trait Implementations

impl<Id: Clone, V: Clone, S: Clone> Clone for Equivocation<Id, V, S>[src]

impl<Id: Debug, V: Debug, S: Debug> Debug for Equivocation<Id, V, S>[src]

impl<Id: PartialEq, V: PartialEq, S: PartialEq> PartialEq<Equivocation<Id, V, S>> for Equivocation<Id, V, S>[src]

impl<Id, V, S> StructuralPartialEq for Equivocation<Id, V, S>[src]

Auto Trait Implementations

impl<Id, V, S> RefUnwindSafe for Equivocation<Id, V, S> where
    Id: RefUnwindSafe,
    S: RefUnwindSafe,
    V: RefUnwindSafe
[src]

impl<Id, V, S> Send for Equivocation<Id, V, S> where
    Id: Send,
    S: Send,
    V: Send
[src]

impl<Id, V, S> Sync for Equivocation<Id, V, S> where
    Id: Sync,
    S: Sync,
    V: Sync
[src]

impl<Id, V, S> Unpin for Equivocation<Id, V, S> where
    Id: Unpin,
    S: Unpin,
    V: Unpin
[src]

impl<Id, V, S> UnwindSafe for Equivocation<Id, V, S> where
    Id: UnwindSafe,
    S: UnwindSafe,
    V: UnwindSafe
[src]

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.