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 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”

Implementations

Extract the result from a response

Return the RPC error, if there was one, but do 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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.