[][src]Struct jsonrpc::Response

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

A JSONRPC response object

Fields

result: Option<Box<RawValue>>

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: for<'a> Deserialize<'a>>(&self) -> Result<T, Error>[src]

Extract the result from a 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 Clone for Response[src]

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 Unpin for Response

impl Sync for Response

impl Send for Response

impl UnwindSafe for Response

impl RefUnwindSafe for Response

Blanket Implementations

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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