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

Communication between nodes that is not round-localized.

Variants

Commit(u64CompactCommit<H, N, S, Id>, Callback<CommitProcessingOutcome>)

A commit message.

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

A catch up message.

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.