Struct jsonrpc_core::request::Notification
[−]
[src]
pub struct Notification {
pub jsonrpc: Version,
pub method: String,
pub params: Option<Params>,
}Represents jsonrpc request which is a notification.
Fields
jsonrpc: Version
A String specifying the version of the JSON-RPC protocol. MUST be exactly "2.0".
method: String
A String containing the name of the method to be invoked.
params: Option<Params>
A Structured value that holds the parameter values to be used during the invocation of the method. This member MAY be omitted.
Methods
impl Notification[src]
fn from(result: SubscriptionOutput, jsonrpc: Version) -> Self
Converts SubscriptionOutput into Notification request.
Trait Implementations
impl PartialEq for Notification[src]
fn eq(&self, __arg_0: &Notification) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Notification) -> bool
This method tests for !=.