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

A String specifying the version of the JSON-RPC protocol. MUST be exactly "2.0".

A String containing the name of the method to be invoked.

A Structured value that holds the parameter values to be used during the invocation of the method. This member MAY be omitted.

Trait Implementations

impl PartialEq for Notification
[src]

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

This method tests for !=.

impl Debug for Notification
[src]

Formats the value using the given formatter.