Struct jsonrpsee_types::request::NotificationSer
source · pub struct NotificationSer<'a> {
pub jsonrpc: TwoPointZero,
pub method: &'a str,
pub params: Option<ParamsSer<'a>>,
}
Expand description
Serializable JSON-RPC notification object.
Fields§
§jsonrpc: TwoPointZero
JSON-RPC version.
method: &'a str
Name of the method to be invoked.
params: Option<ParamsSer<'a>>
Parameter values of the request.