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

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");

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]);

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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