Struct json_rpc_types::Request[][src]

pub struct Request<P, T = StrBuf<32>> {
    pub jsonrpc: Version,
    pub method: T,
    pub params: Option<P>,
    pub id: Option<Id>,
}
Expand description

Request representation.

Note that omitting id means that request is notification, rather than call, which expects response. This can be used to indicate lack of interest in response.

Type parameters:

  • P - to specify type of params field, which is optional. Normally it should be collection of values or object. But choice is yours.
  • T - specifies textual type. By default it uses static buffer of 32 bytes, which is more than enough in normal cases.

Fields

jsonrpc: Version

A String specifying the version of the JSON-RPC protocol.

method: T

A String containing the name of the method to be invoked

By default is static buffer of 32 bytes.

params: Option<P>

A Structured value that holds the parameter values to be used during the invocation of the method

id: Option<Id>

An identifier established by the Client.

If not present, request is notification to which there should be no response.

Implementations

impl<P, T> Request<P, T>[src]

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

Returns whether request is notification.

Trait Implementations

impl<P: Clone, T: Clone> Clone for Request<P, T>[src]

fn clone(&self) -> Request<P, T>[src]

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl<P: Debug, T: Debug> Debug for Request<P, T>[src]

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

Formats the value using the given formatter. Read more

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

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl<P: PartialEq, T: PartialEq> PartialEq<Request<P, T>> for Request<P, T>[src]

fn eq(&self, other: &Request<P, T>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Request<P, T>) -> bool[src]

This method tests for !=.

impl<P, T> Serialize for Request<P, T> where
    P: Serialize,
    T: Serialize
[src]

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

Serialize this value into the given Serde serializer. Read more

impl<P, T> StructuralPartialEq for Request<P, T>[src]

Auto Trait Implementations

impl<P, T> RefUnwindSafe for Request<P, T> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

impl<P, T> Send for Request<P, T> where
    P: Send,
    T: Send

impl<P, T> Sync for Request<P, T> where
    P: Sync,
    T: Sync

impl<P, T> Unpin for Request<P, T> where
    P: Unpin,
    T: Unpin

impl<P, T> UnwindSafe for Request<P, T> where
    P: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

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

Performs the conversion.

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.

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

Performs the conversion.

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