[][src]Struct jsonrpc::Response

pub struct Response {
    pub result: Option<Value>,
    pub error: Option<RpcError>,
    pub id: Value,
    pub jsonrpc: Option<String>,
}

A JSONRPC response object

Fields

result: Option<Value>

A result if there is one, or null

error: Option<RpcError>

An error if there is one, or null

id: Value

Identifier for this Request, which should match that of the request

jsonrpc: Option<String>

jsonrpc field, MUST be "2.0"

Methods

impl Response[src]

pub fn result<T: DeserializeOwned>(&self) -> Result<T, Error>[src]

Extract the result from a response

pub fn into_result<T: DeserializeOwned>(self) -> Result<T, Error>[src]

Extract the result from a response, consuming the response

pub fn check_error(self) -> Result<(), Error>[src]

Return the RPC error, if there was one, but do not check the result

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

Returns whether or not the result field is empty

Trait Implementations

impl PartialEq<Response> for Response[src]

impl Clone for Response[src]

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

Performs copy-assignment from source. Read more

impl Debug for Response[src]

impl Serialize for Response[src]

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

Auto Trait Implementations

impl Send for Response

impl Sync for Response

Blanket Implementations

impl<T> From for T[src]

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, 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> 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.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

default fn get_type(&self) -> TypeId

Get the TypeId of this object.

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