[][src]Struct easy_jsonrpc::Response

pub struct Response {
    pub outputs: BTreeMap<u64, Result<Value, Error>>,
}

Special purpose structure for holding a group of responses. Allows for response lookup by id. Does not support non-number ids.

Fields

outputs: BTreeMap<u64, Result<Value, Error>>

Mapping from id to output of rpc call.

Methods

impl Response[src]

pub fn from_json_response(
    raw_jsonrpc_response: Value
) -> Result<Self, InvalidResponse>
[src]

Deserialize response from a jsonrpc server.

pub fn remove(&mut self, id: u64) -> Option<Result<Value, Error>>[src]

Retrieve the output with a matching id and return it, return None if no such output exists.

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> From for T[src]

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

type Error = Infallible

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> BorrowMut for T where
    T: ?Sized
[src]

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

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

The type returned in the event of a conversion error.