Struct json_with_comments::value::de::seq::ValueSeqDeserializer
source · pub struct ValueSeqDeserializer<'de, I, F> { /* private fields */ }
Implementations§
source§impl<'de, I, F> ValueSeqDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
impl<'de, I, F> ValueSeqDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
pub fn new(seq: &'de [JsoncValue<I, F>]) -> Self
Trait Implementations§
source§impl<'de, I, F> SeqAccess<'de> for ValueSeqDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
impl<'de, I, F> SeqAccess<'de> for ValueSeqDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
§type Error = JsonWithCommentsError
type Error = JsonWithCommentsError
The error type that can be returned if some error occurs during
deserialization.
source§fn next_element_seed<S>(
&mut self,
seed: S
) -> Result<Option<S::Value>, Self::Error>where
S: DeserializeSeed<'de>,
fn next_element_seed<S>(
&mut self,
seed: S
) -> Result<Option<S::Value>, Self::Error>where
S: DeserializeSeed<'de>,
This returns
Ok(Some(value))
for the next value in the sequence, or
Ok(None)
if there are no more remaining items. Read moresource§fn size_hint(&self) -> Option<usize>
fn size_hint(&self) -> Option<usize>
Returns the number of elements remaining in the sequence, if known.
source§fn next_element<T>(&mut self) -> Result<Option<T>, Self::Error>where
T: Deserialize<'de>,
fn next_element<T>(&mut self) -> Result<Option<T>, Self::Error>where
T: Deserialize<'de>,
This returns
Ok(Some(value))
for the next value in the sequence, or
Ok(None)
if there are no more remaining items. Read moreAuto Trait Implementations§
impl<'de, I, F> !RefUnwindSafe for ValueSeqDeserializer<'de, I, F>
impl<'de, I, F> !Send for ValueSeqDeserializer<'de, I, F>
impl<'de, I, F> !Sync for ValueSeqDeserializer<'de, I, F>
impl<'de, I, F> Unpin for ValueSeqDeserializer<'de, I, F>
impl<'de, I, F> !UnwindSafe for ValueSeqDeserializer<'de, I, F>
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