struct SeqAccess<'a, 'b, F: Flavor<'b>> {
deserializer: &'a mut Deserializer<'b, F>,
len: usize,
}Fields§
§deserializer: &'a mut Deserializer<'b, F>§len: usizeTrait Implementations§
Source§impl<'a, 'b: 'a, F: Flavor<'b>> SeqAccess<'b> for SeqAccess<'a, 'b, F>
impl<'a, 'b: 'a, F: Flavor<'b>> SeqAccess<'b> for SeqAccess<'a, 'b, F>
Source§type Error = Error
type Error = Error
The error type that can be returned if some error occurs during
deserialization.
Source§fn next_element_seed<V: DeserializeSeed<'b>>(
&mut self,
seed: V,
) -> Result<Option<V::Value>>
fn next_element_seed<V: DeserializeSeed<'b>>( &mut self, seed: V, ) -> Result<Option<V::Value>>
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<'a, 'b, F> Freeze for SeqAccess<'a, 'b, F>
impl<'a, 'b, F> RefUnwindSafe for SeqAccess<'a, 'b, F>where
F: RefUnwindSafe,
impl<'a, 'b, F> Send for SeqAccess<'a, 'b, F>where
F: Send,
impl<'a, 'b, F> Sync for SeqAccess<'a, 'b, F>where
F: Sync,
impl<'a, 'b, F> Unpin for SeqAccess<'a, 'b, F>
impl<'a, 'b, F> !UnwindSafe for SeqAccess<'a, 'b, 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