Struct jsonrpc::Response

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

A JSONRPC response object.

Fields§

§result: Option<Box<RawValue>>

A result if there is one, or None.

§error: Option<RpcError>

An error if there is one, or None.

§id: Value

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

§jsonrpc: Option<String>

jsonrpc field, MUST be “2.0”.

Implementations§

Extracts the result from a response.

Returns the RPC error, if there was one, but does not check the result.

Returns whether or not the result field is empty.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.