struct ListIter<'de, 'a> {
content: Option<Content<'de, 'a>>,
escaped: bool,
}Expand description
Iterator over string sub-slices delimited by one or several spaces.
Contains decoded value of the simpleType.
Iteration ends when list contains None.
Fields§
§content: Option<Content<'de, 'a>>If Some, contains unconsumed data of the list
escaped: boolIf true, content in escaped form and should be unescaped before use
Trait Implementations§
Source§impl<'de, 'a> SeqAccess<'de> for ListIter<'de, 'a>
impl<'de, 'a> SeqAccess<'de> for ListIter<'de, 'a>
Source§type Error = DeError
type Error = DeError
The error type that can be returned if some error occurs during
deserialization.
Source§fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, DeError>where
T: DeserializeSeed<'de>,
fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, DeError>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<'de, 'a> Freeze for ListIter<'de, 'a>
impl<'de, 'a> RefUnwindSafe for ListIter<'de, 'a>
impl<'de, 'a> Send for ListIter<'de, 'a>
impl<'de, 'a> Sync for ListIter<'de, 'a>
impl<'de, 'a> Unpin for ListIter<'de, 'a>
impl<'de, 'a> UnwindSafe for ListIter<'de, '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