pub enum InfoResponse {
Echo(Echo),
Info(Info),
Query(Query),
SetOption(SetOption),
}
Expand description
The info category of ABCI responses.
Variants§
Echo(Echo)
Echoes a string to test an ABCI implementation.
Info(Info)
Returns information about the application state.
Query(Query)
Returns data queried from the application.
SetOption(SetOption)
Undocumented, non-deterministic, was removed from Tendermint in 0.35.
Trait Implementations§
Source§impl Clone for InfoResponse
impl Clone for InfoResponse
Source§fn clone(&self) -> InfoResponse
fn clone(&self) -> InfoResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InfoResponse
impl Debug for InfoResponse
Source§impl From<InfoResponse> for Response
impl From<InfoResponse> for Response
Source§fn from(req: InfoResponse) -> Self
fn from(req: InfoResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InfoResponse
impl PartialEq for InfoResponse
Source§impl TryFrom<Response> for InfoResponse
impl TryFrom<Response> for InfoResponse
impl Eq for InfoResponse
impl StructuralPartialEq for InfoResponse
Auto Trait Implementations§
impl !Freeze for InfoResponse
impl RefUnwindSafe for InfoResponse
impl Send for InfoResponse
impl Sync for InfoResponse
impl Unpin for InfoResponse
impl UnwindSafe for InfoResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more