Struct tetsy_finality_grandpa::PrimaryPropose[][src]

pub struct PrimaryPropose<H, N> {
    pub target_hash: H,
    pub target_number: N,
}

A primary proposed block, this is a broadcast of the last round’s estimate.

Fields

target_hash: H

The target block’s hash.

target_number: N

The target block’s number

Implementations

impl<H, N> PrimaryPropose<H, N>[src]

pub fn new(target_hash: H, target_number: N) -> Self[src]

Create a new primary proposal for the given block (hash and number).

Trait Implementations

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

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

impl<H: Eq, N: Eq> Eq for PrimaryPropose<H, N>[src]

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

impl<H, N> StructuralEq for PrimaryPropose<H, N>[src]

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

Auto Trait Implementations

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

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

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

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

impl<H, N> UnwindSafe for PrimaryPropose<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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.