[][src]Struct abci::types::BeginBlockRequest

pub struct BeginBlockRequest {
    pub hash: Vec<u8>,
    pub header: Option<Header>,
    pub last_commit_info: Option<LastCommitInfo>,
    pub byzantine_validators: Vec<Evidence>,
}

Fields

hash: Vec<u8>

Block's hash. This can be derived from the block header

header: Option<Header>

Block header

last_commit_info: Option<LastCommitInfo>

Info about the last commit, including the round, and the list of validators and which ones signed the last block

byzantine_validators: Vec<Evidence>

List of evidence of validators that acted maliciously

Trait Implementations

impl Debug for BeginBlockRequest[src]

impl Default for BeginBlockRequest[src]

Auto Trait Implementations

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, 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.