pub enum InfoRequest {
Info(Info),
Query(Query),
Echo(Echo),
SetOption(SetOption),
}
Expand description
The info category of ABCI requests.
Variants§
Info(Info)
Requests information about the application state.
Query(Query)
Queries for data from the application at current or past height.
Echo(Echo)
Echoes a string to test an ABCI implementation.
SetOption(SetOption)
Undocumented, non-deterministic, was removed from Tendermint in 0.35.
Trait Implementations§
Source§impl Clone for InfoRequest
impl Clone for InfoRequest
Source§fn clone(&self) -> InfoRequest
fn clone(&self) -> InfoRequest
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 InfoRequest
impl Debug for InfoRequest
Source§impl From<InfoRequest> for Request
impl From<InfoRequest> for Request
Source§fn from(req: InfoRequest) -> Self
fn from(req: InfoRequest) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InfoRequest
impl PartialEq for InfoRequest
Source§impl TryFrom<Request> for InfoRequest
impl TryFrom<Request> for InfoRequest
impl Eq for InfoRequest
impl StructuralPartialEq for InfoRequest
Auto Trait Implementations§
impl !Freeze for InfoRequest
impl RefUnwindSafe for InfoRequest
impl Send for InfoRequest
impl Sync for InfoRequest
impl Unpin for InfoRequest
impl UnwindSafe for InfoRequest
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