Struct jsonrpsee_types::params::Params
source · [−]pub struct Params<'a>(_);Expand description
Parameters sent with an incoming JSON-RPC request.
The data containing the params is a Cow<&str> and can either be a borrowed &str of JSON from an incoming
super::request::Request (which in turn borrows it from the input buffer that is shared between requests);
or, it can be an owned String.
Implementations
Obtain a sequence parser, ParamsSequence.
This allows sequential parsing of the incoming params, using an Iterator-style API and is useful when the RPC
request has optional parameters at the tail that may or may not be present.
Attempt to parse all parameters as an array or map into type T.
Attempt to parse parameters as an array of a single value of type T, and returns that value.
Convert Params<'a> to Params<'static> so that it can be moved across threads.
This will cause an allocation if the params internally are using a borrowed JSON slice.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Params<'a>
impl<'a> UnwindSafe for Params<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more