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: TwoPointZeroJSON-RPC version.
method: &'a strName of the method to be invoked.
params: Option<ParamsSer<'a>>Parameter values of the request.