[][src]Enum finality_grandpa::voter::CommunicationIn

pub enum CommunicationIn<H, N, S, Id> {
    Commit(u64CompactCommit<H, N, S, Id>, Callback<CommitProcessingOutcome>),
    CatchUp(CatchUp<H, N, S, Id>, Callback<CatchUpProcessingOutcome>),
}

Communication between nodes that is not round-localized.

Variants

A commit message.

CatchUp(CatchUp<H, N, S, Id>, Callback<CatchUpProcessingOutcome>)

A catch up message.

Auto Trait Implementations

impl<H, N, S, Id> Send for CommunicationIn<H, N, S, Id> where
    H: Send,
    Id: Send,
    N: Send,
    S: Send

impl<H, N, S, Id> !Sync for CommunicationIn<H, N, S, Id>

impl<H, N, S, Id> Unpin for CommunicationIn<H, N, S, Id> where
    H: Unpin,
    Id: Unpin,
    N: Unpin,
    S: Unpin

impl<H, N, S, Id> !UnwindSafe for CommunicationIn<H, N, S, Id>

impl<H, N, S, Id> !RefUnwindSafe for CommunicationIn<H, N, S, Id>

Blanket Implementations

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

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

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]