Skip to main content

Response

Struct Response 

Source
pub struct Response {
    pub jsonrpc: &'static str,
    pub id: Option<Value>,
    pub result: Option<Value>,
    pub error: Option<ResponseError>,
}
Expand description

JSON-RPC 2.0 response envelope.

Constructed via Response::ok or Response::err; direct field access is public so downstream code can inspect and log responses without going through the constructors.

Fields§

§jsonrpc: &'static str

JSON-RPC version marker. Always the literal "2.0".

§id: Option<Value>

Correlation identifier echoed back from the paired Request. None for responses to notifications.

§result: Option<Value>

Success payload. Mutually exclusive with Self::error.

§error: Option<ResponseError>

Error payload. Mutually exclusive with Self::result.

Implementations§

Source§

impl Response

Source

pub const fn ok(id: Option<Value>, result: Value) -> Self

Construct a successful response.

Source

pub fn err(id: Option<Value>, code: i32, message: impl Into<String>) -> Self

Construct an error response.

Trait Implementations§

Source§

impl Debug for Response

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Serialize for Response

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.