struct SeqAccessWrapper<'de, M> {
delegate: M,
is_human_readable: bool,
first: Option<Content<'de>>,
}Fields§
§delegate: M§is_human_readable: bool§first: Option<Content<'de>>Trait Implementations§
Source§impl<'de, S> SeqAccess<'de> for SeqAccessWrapper<'de, S>where
S: SeqAccess<'de>,
impl<'de, S> SeqAccess<'de> for SeqAccessWrapper<'de, S>where
S: SeqAccess<'de>,
Source§type Error = <S as SeqAccess<'de>>::Error
type Error = <S as SeqAccess<'de>>::Error
The error type that can be returned if some error occurs during
deserialization.
Source§fn next_element_seed<K>(
&mut self,
seed: K,
) -> Result<Option<K::Value>, Self::Error>where
K: DeserializeSeed<'de>,
fn next_element_seed<K>(
&mut self,
seed: K,
) -> Result<Option<K::Value>, Self::Error>where
K: 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<'de, M> Freeze for SeqAccessWrapper<'de, M>where
M: Freeze,
impl<'de, M> RefUnwindSafe for SeqAccessWrapper<'de, M>where
M: RefUnwindSafe,
impl<'de, M> Send for SeqAccessWrapper<'de, M>where
M: Send,
impl<'de, M> Sync for SeqAccessWrapper<'de, M>where
M: Sync,
impl<'de, M> Unpin for SeqAccessWrapper<'de, M>where
M: Unpin,
impl<'de, M> UnsafeUnpin for SeqAccessWrapper<'de, M>where
M: UnsafeUnpin,
impl<'de, M> UnwindSafe for SeqAccessWrapper<'de, M>where
M: UnwindSafe,
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