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

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.

Implementations

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

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

Genesis state.

Trait Implementations

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

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

impl<H, N> Decode for State<H, N> where
    Option<(H, N)>: Decode,
    Option<(H, N)>: Decode,
    Option<(H, N)>: Decode,
    Option<(H, N)>: Decode,
    Option<(H, N)>: Decode,
    Option<(H, N)>: Decode
[src]

impl<H, N> Encode for State<H, N> where
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode
[src]

impl<H, N> EncodeLike<State<H, N>> for State<H, N> where
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode,
    Option<(H, N)>: Encode
[src]

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

impl<H, N> StructuralPartialEq for State<H, N>[src]

Auto Trait Implementations

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

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

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

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

Blanket Implementations

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

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

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

impl<S> Codec for S where
    S: Encode + Decode
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: Encode + ToOwned
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

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

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

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

impl<T> KeyedVec for T where
    T: Codec
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.