Struct jsonrpsee_types::params::ParamsSequence
source · pub struct ParamsSequence<'a>(_);
Expand description
An Iterator
-like parser for a sequence of Params
.
This will parse the params one at a time, and allows for graceful handling of optional parameters at the tail; other
use cases are likely better served by Params::parse
. The reason this is not an actual Iterator
is that
params parsing (often) yields values of different types.
Regards empty array []
as no parameters provided.
Implementations§
source§impl<'a> ParamsSequence<'a>
impl<'a> ParamsSequence<'a>
sourcepub fn next<T>(&mut self) -> Result<T, CallError>where
T: Deserialize<'a>,
pub fn next<T>(&mut self) -> Result<T, CallError>where
T: Deserialize<'a>,
Parse the next parameter to type T
let params = Params::new(Some(r#"[true, 10, "foo"]"#));
let mut seq = params.sequence();
let a: bool = seq.next().unwrap();
let b: i32 = seq.next().unwrap();
let c: &str = seq.next().unwrap();
assert_eq!(a, true);
assert_eq!(b, 10);
assert_eq!(c, "foo");
sourcepub fn optional_next<T>(&mut self) -> Result<Option<T>, CallError>where
T: Deserialize<'a>,
pub fn optional_next<T>(&mut self) -> Result<Option<T>, CallError>where
T: Deserialize<'a>,
Parse the next optional parameter to type Option<T>
.
The result will be None
for null
, and for missing values in the supplied JSON array.
let params = Params::new(Some(r#"[1, 2, null]"#));
let mut seq = params.sequence();
let params: [Option<u32>; 4] = [
seq.optional_next().unwrap(),
seq.optional_next().unwrap(),
seq.optional_next().unwrap(),
seq.optional_next().unwrap(),
];
assert_eq!(params, [Some(1), Some(2), None, None]);