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, V, S> Decode for Equivocation<Id, V, S> where
    Id: Decode,
    Id: Decode,
    V: Decode,
    S: Decode,
    (V, S): Decode,
    V: Decode,
    S: Decode,
    (V, S): Decode
[src]

impl<Id, V, S> Encode for Equivocation<Id, V, S> where
    Id: Encode,
    Id: Encode,
    V: Encode,
    S: Encode,
    (V, S): Encode,
    V: Encode,
    S: Encode,
    (V, S): Encode
[src]

impl<Id, V, S> EncodeLike<Equivocation<Id, V, S>> for Equivocation<Id, V, S> where
    Id: Encode,
    Id: Encode,
    V: Encode,
    S: Encode,
    (V, S): Encode,
    V: Encode,
    S: Encode,
    (V, S): Encode
[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

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

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

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

impl<Id, V, S> UnwindSafe for Equivocation<Id, V, S> where
    Id: UnwindSafe,
    S: UnwindSafe,
    V: 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<S> Codec for S where
    S: Encode + Decode
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: Encode + ToOwned
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

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

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

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

impl<T> KeyedVec for T where
    T: Codec
[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.