[][src]Struct tendermint_rpc::endpoint::block_results::Response

pub struct Response {
    pub height: Height,
    pub txs_results: Option<Vec<DeliverTx>>,
    pub begin_block_events: Option<Vec<Event>>,
    pub end_block_events: Option<Vec<Event>>,
    pub validator_updates: Vec<Update>,
    pub consensus_param_updates: Option<Params>,
}

ABCI result response.

Fields

height: Height

Block height

txs_results: Option<Vec<DeliverTx>>

Txs results (might be explicit null)

begin_block_events: Option<Vec<Event>>

Begin block events (might be explicit null)

end_block_events: Option<Vec<Event>>

End block events (might be explicit null)

validator_updates: Vec<Update>

Validator updates (might be explicit null)

consensus_param_updates: Option<Params>

New consensus params (might be explicit null)

Trait Implementations

impl Clone for Response[src]

impl Debug for Response[src]

impl<'de> Deserialize<'de> for Response[src]

impl Response for Response[src]

impl Serialize for Response[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> Conv for T

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> FmtForward for T

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

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<V, T> VZip<V> for T where
    V: MultiLane<T>,