Enum finality_grandpa::Message[][src]

pub enum Message<H, N> {
    Prevote(Prevote<H, N>),
    Precommit(Precommit<H, N>),
    PrimaryPropose(PrimaryPropose<H, N>),
}

A protocol message or vote.

Variants

Prevote(Prevote<H, N>)

A prevote message.

Precommit(Precommit<H, N>)

A precommit message.

PrimaryPropose(PrimaryPropose<H, N>)

A primary proposal message.

Implementations

impl<H, N: Copy> Message<H, N>[src]

pub fn target(&self) -> (&H, N)[src]

Get the target block of the vote.

Trait Implementations

impl<H: Clone, N: Clone> Clone for Message<H, N>[src]

impl<H: Debug, N: Debug> Debug for Message<H, N>[src]

impl<H: Eq, N: Eq> Eq for Message<H, N>[src]

impl<H: PartialEq, N: PartialEq> PartialEq<Message<H, N>> for Message<H, N>[src]

impl<H, N> StructuralEq for Message<H, N>[src]

impl<H, N> StructuralPartialEq for Message<H, N>[src]

Auto Trait Implementations

impl<H, N> RefUnwindSafe for Message<H, N> where
    H: RefUnwindSafe,
    N: RefUnwindSafe
[src]

impl<H, N> Send for Message<H, N> where
    H: Send,
    N: Send
[src]

impl<H, N> Sync for Message<H, N> where
    H: Sync,
    N: Sync
[src]

impl<H, N> Unpin for Message<H, N> where
    H: Unpin,
    N: Unpin
[src]

impl<H, N> UnwindSafe for Message<H, N> where
    H: UnwindSafe,
    N: 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.