[][src]Enum rhododendron::Vote

pub enum Vote<D> {
    Prepare(u32, D),
    Commit(u32, D),
    AdvanceRound(u32),
}

Votes during a round.

Variants

Prepare(u32, D)

Prepare to vote for proposal with digest D.

Commit(u32, D)

Commit to proposal with digest D..

AdvanceRound(u32)

Propose advancement to a new round.

Methods

impl<D> Vote<D>[src]

pub fn round_number(&self) -> u32[src]

Extract the round number.

Trait Implementations

impl<D: Clone> Clone for Vote<D>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<C, D> From<Vote<D>> for Message<C, D>[src]

impl<D: PartialEq> PartialEq<Vote<D>> for Vote<D>[src]

impl<D: Eq> Eq for Vote<D>[src]

impl<D: Debug> Debug for Vote<D>[src]

Auto Trait Implementations

impl<D> Sync for Vote<D> where
    D: Sync

impl<D> Send for Vote<D> where
    D: Send

impl<D> Unpin for Vote<D> where
    D: Unpin

impl<D> RefUnwindSafe for Vote<D> where
    D: RefUnwindSafe

impl<D> UnwindSafe for Vote<D> where
    D: UnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]