Enum rhododendron::AdvanceRoundReason[][src]

pub enum AdvanceRoundReason {
    Timeout,
    WasBehind,
}

A reason why we are advancing round.

Variants

We received enough AdvanceRound messages to advance to the next round.

We got enough Prepare messages for a future round to fast-forward to it.

Trait Implementations

impl Debug for AdvanceRoundReason
[src]

Formats the value using the given formatter. Read more

impl Clone for AdvanceRoundReason
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AdvanceRoundReason
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AdvanceRoundReason
[src]

Auto Trait Implementations