Struct jsonrpc_core::types::request::MethodCall
source · pub struct MethodCall {
pub jsonrpc: Option<Version>,
pub method: String,
pub params: Params,
pub id: Id,
}
Expand description
Represents jsonrpc request which is a method call.
Fields§
§jsonrpc: Option<Version>
A String specifying the version of the JSON-RPC protocol.
method: String
A String containing the name of the method to be invoked.
params: Params
A Structured value that holds the parameter values to be used during the invocation of the method. This member MAY be omitted.
id: Id
An identifier established by the Client that MUST contain a String, Number, or NULL value if included. If it is not included it is assumed to be a notification.
Trait Implementations§
source§impl Clone for MethodCall
impl Clone for MethodCall
source§fn clone(&self) -> MethodCall
fn clone(&self) -> MethodCall
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for MethodCall
impl Debug for MethodCall
source§impl<'de> Deserialize<'de> for MethodCall
impl<'de> Deserialize<'de> for MethodCall
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<MethodCall> for Call
impl From<MethodCall> for Call
source§fn from(mc: MethodCall) -> Self
fn from(mc: MethodCall) -> Self
Converts to this type from the input type.
source§impl PartialEq<MethodCall> for MethodCall
impl PartialEq<MethodCall> for MethodCall
source§fn eq(&self, other: &MethodCall) -> bool
fn eq(&self, other: &MethodCall) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MethodCall
impl Serialize for MethodCall
impl StructuralPartialEq for MethodCall
Auto Trait Implementations§
impl RefUnwindSafe for MethodCall
impl Send for MethodCall
impl Sync for MethodCall
impl Unpin for MethodCall
impl UnwindSafe for MethodCall
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more