Module jsonrpsee_core::params

source ·
Expand description

RPC Parameters. RPC parameters.

Structs

  • Parameter builder that serializes plain value parameters to a JSON compatible string. This is the equivalent of a JSON Array object [ value0, value1, .., valueN ].
  • Request builder that serializes RPC parameters to construct a valid batch parameter. This is the equivalent of chaining multiple RPC requests.
  • Parameter builder that serializes named value parameters to a JSON compatible string. This is the equivalent of a JSON Map object { key: value }.