pub struct ParamsSequence<'a>(/* private fields */);
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, ErrorObjectOwned>where
T: Deserialize<'a>,
pub fn next<T>(&mut self) -> Result<T, ErrorObjectOwned>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>, ErrorObjectOwned>where
T: Deserialize<'a>,
pub fn optional_next<T>(&mut self) -> Result<Option<T>, ErrorObjectOwned>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]);
Trait Implementations§
source§impl<'a> Clone for ParamsSequence<'a>
impl<'a> Clone for ParamsSequence<'a>
source§fn clone(&self) -> ParamsSequence<'a>
fn clone(&self) -> ParamsSequence<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for ParamsSequence<'a>
impl<'a> Debug for ParamsSequence<'a>
impl<'a> Copy for ParamsSequence<'a>
Auto Trait Implementations§
impl<'a> Freeze for ParamsSequence<'a>
impl<'a> RefUnwindSafe for ParamsSequence<'a>
impl<'a> Send for ParamsSequence<'a>
impl<'a> Sync for ParamsSequence<'a>
impl<'a> Unpin for ParamsSequence<'a>
impl<'a> UnwindSafe for ParamsSequence<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)