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