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