[][src]Struct finality_grandpa::round::State

pub struct State<H, N> {
    pub prevote_ghost: Option<(H, N)>,
    pub finalized: Option<(H, N)>,
    pub estimate: Option<(H, N)>,
    pub completable: bool,
}

State of the round.

Fields

prevote_ghost: Option<(H, N)>

The prevote-GHOST block.

finalized: Option<(H, N)>

The finalized block.

estimate: Option<(H, N)>

The new round-estimate.

completable: bool

Whether the round is completable.

Methods

impl<H: Clone, N: Clone> State<H, N>[src]

pub fn genesis(genesis: (H, N)) -> Self[src]

Trait Implementations

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

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

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

impl<H, N> Send for State<H, N> where
    H: Send,
    N: Send

impl<H, N> Sync for State<H, N> where
    H: Sync,
    N: Sync

Blanket Implementations

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

type Owned = T

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T