Struct serde_json::de::SeqAccess
source · struct SeqAccess<'a, R: 'a> {
de: &'a mut Deserializer<R>,
first: bool,
}
Fields§
§de: &'a mut Deserializer<R>
§first: bool
Implementations§
Trait Implementations§
source§impl<'de, 'a, R: Read<'de> + 'a> SeqAccess<'de> for SeqAccess<'a, R>
impl<'de, 'a, R: Read<'de> + 'a> SeqAccess<'de> for SeqAccess<'a, R>
source§fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>>where
T: DeserializeSeed<'de>,
fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>>where
T: 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 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, R> Freeze for SeqAccess<'a, R>
impl<'a, R> RefUnwindSafe for SeqAccess<'a, R>where
R: RefUnwindSafe,
impl<'a, R> Send for SeqAccess<'a, R>where
R: Send,
impl<'a, R> Sync for SeqAccess<'a, R>where
R: Sync,
impl<'a, R> Unpin for SeqAccess<'a, R>
impl<'a, R> !UnwindSafe for SeqAccess<'a, R>
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