[][src]Struct abci::Response

pub struct Response {
    pub value: Option<Response_oneof_value>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

value: Option<Response_oneof_value>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl Response
[src]

pub fn new() -> Response
[src]

pub fn clear_exception(&mut self)
[src]

pub fn has_exception(&self) -> bool
[src]

pub fn set_exception(&mut self, v: ResponseException)
[src]

pub fn mut_exception(&mut self) -> &mut ResponseException
[src]

pub fn take_exception(&mut self) -> ResponseException
[src]

pub fn get_exception(&self) -> &ResponseException
[src]

pub fn clear_echo(&mut self)
[src]

pub fn has_echo(&self) -> bool
[src]

pub fn set_echo(&mut self, v: ResponseEcho)
[src]

pub fn mut_echo(&mut self) -> &mut ResponseEcho
[src]

pub fn take_echo(&mut self) -> ResponseEcho
[src]

pub fn get_echo(&self) -> &ResponseEcho
[src]

pub fn clear_flush(&mut self)
[src]

pub fn has_flush(&self) -> bool
[src]

pub fn set_flush(&mut self, v: ResponseFlush)
[src]

pub fn mut_flush(&mut self) -> &mut ResponseFlush
[src]

pub fn take_flush(&mut self) -> ResponseFlush
[src]

pub fn get_flush(&self) -> &ResponseFlush
[src]

pub fn clear_info(&mut self)
[src]

pub fn has_info(&self) -> bool
[src]

pub fn set_info(&mut self, v: ResponseInfo)
[src]

pub fn mut_info(&mut self) -> &mut ResponseInfo
[src]

pub fn take_info(&mut self) -> ResponseInfo
[src]

pub fn get_info(&self) -> &ResponseInfo
[src]

pub fn clear_set_option(&mut self)
[src]

pub fn has_set_option(&self) -> bool
[src]

pub fn set_set_option(&mut self, v: ResponseSetOption)
[src]

pub fn mut_set_option(&mut self) -> &mut ResponseSetOption
[src]

pub fn take_set_option(&mut self) -> ResponseSetOption
[src]

pub fn get_set_option(&self) -> &ResponseSetOption
[src]

pub fn clear_init_chain(&mut self)
[src]

pub fn has_init_chain(&self) -> bool
[src]

pub fn set_init_chain(&mut self, v: ResponseInitChain)
[src]

pub fn mut_init_chain(&mut self) -> &mut ResponseInitChain
[src]

pub fn take_init_chain(&mut self) -> ResponseInitChain
[src]

pub fn get_init_chain(&self) -> &ResponseInitChain
[src]

pub fn clear_query(&mut self)
[src]

pub fn has_query(&self) -> bool
[src]

pub fn set_query(&mut self, v: ResponseQuery)
[src]

pub fn mut_query(&mut self) -> &mut ResponseQuery
[src]

pub fn take_query(&mut self) -> ResponseQuery
[src]

pub fn get_query(&self) -> &ResponseQuery
[src]

pub fn clear_begin_block(&mut self)
[src]

pub fn has_begin_block(&self) -> bool
[src]

pub fn set_begin_block(&mut self, v: ResponseBeginBlock)
[src]

pub fn mut_begin_block(&mut self) -> &mut ResponseBeginBlock
[src]

pub fn take_begin_block(&mut self) -> ResponseBeginBlock
[src]

pub fn get_begin_block(&self) -> &ResponseBeginBlock
[src]

pub fn clear_check_tx(&mut self)
[src]

pub fn has_check_tx(&self) -> bool
[src]

pub fn set_check_tx(&mut self, v: ResponseCheckTx)
[src]

pub fn mut_check_tx(&mut self) -> &mut ResponseCheckTx
[src]

pub fn take_check_tx(&mut self) -> ResponseCheckTx
[src]

pub fn get_check_tx(&self) -> &ResponseCheckTx
[src]

pub fn clear_deliver_tx(&mut self)
[src]

pub fn has_deliver_tx(&self) -> bool
[src]

pub fn set_deliver_tx(&mut self, v: ResponseDeliverTx)
[src]

pub fn mut_deliver_tx(&mut self) -> &mut ResponseDeliverTx
[src]

pub fn take_deliver_tx(&mut self) -> ResponseDeliverTx
[src]

pub fn get_deliver_tx(&self) -> &ResponseDeliverTx
[src]

pub fn clear_end_block(&mut self)
[src]

pub fn has_end_block(&self) -> bool
[src]

pub fn set_end_block(&mut self, v: ResponseEndBlock)
[src]

pub fn mut_end_block(&mut self) -> &mut ResponseEndBlock
[src]

pub fn take_end_block(&mut self) -> ResponseEndBlock
[src]

pub fn get_end_block(&self) -> &ResponseEndBlock
[src]

pub fn clear_commit(&mut self)
[src]

pub fn has_commit(&self) -> bool
[src]

pub fn set_commit(&mut self, v: ResponseCommit)
[src]

pub fn mut_commit(&mut self) -> &mut ResponseCommit
[src]

pub fn take_commit(&mut self) -> ResponseCommit
[src]

pub fn get_commit(&self) -> &ResponseCommit
[src]

Trait Implementations

impl PartialEq<Response> for Response
[src]

impl Clone for Response
[src]

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

Performs copy-assignment from source. Read more

impl Default for Response
[src]

impl Debug for Response
[src]

impl Message for Response
[src]

fn write_to(&self, os: &mut CodedOutputStream) -> Result<(), ProtobufError>
[src]

Write the message to the stream. Read more

fn write_length_delimited_to(
    &self,
    os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
[src]

Write the message to the stream prepending the message with message length encoded as varint. Read more

fn write_length_delimited_to_vec(
    &self,
    vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
[src]

Write the message to the vec, prepend the message with message length encoded as varint. Read more

fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>
[src]

Update this message object with fields read from given stream.

fn check_initialized(&self) -> Result<(), ProtobufError>
[src]

Check if all required fields of this object are initialized.

fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>
[src]

Write the message to the writer.

fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>
[src]

Write the message to bytes vec.

fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>
[src]

Write the message to bytes vec.

fn write_length_delimited_to_writer(
    &self,
    w: &mut dyn Write
) -> Result<(), ProtobufError>
[src]

Write the message to the writer, prepend the message with message length encoded as varint. Read more

fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>
[src]

Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more

fn type_id(&self) -> TypeId
[src]

Get type id for downcasting.

impl Clear for Response
[src]

impl ProtobufValue for Response
[src]

fn as_any(&self) -> &(dyn Any + 'static)
[src]

fn is_non_zero(&self) -> bool
[src]

fn as_ref_copy(&self) -> ProtobufValueRef<'static>
[src]

Auto Trait Implementations

impl Send for Response

impl Sync for Response

Blanket Implementations

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

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

type Owned = T

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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