pub struct JsonObjectAccess<I: Iterator<Item = (String, JsonValue)>> { /* private fields */ }
Implementations§
Trait Implementations§
source§impl<I: Iterator<Item = (String, JsonValue)>> MapAccess for JsonObjectAccess<I>
impl<I: Iterator<Item = (String, JsonValue)>> MapAccess for JsonObjectAccess<I>
fn next_key<K: Deserialize>(&mut self) -> Result<Option<K>, Error>
fn next_value<V: Deserialize>(&mut self) -> Result<Option<V>, Error>
fn next_entry<K: Deserialize, V: Deserialize>( &mut self, ) -> Result<Option<(K, V)>, Error>
Auto Trait Implementations§
impl<I> Freeze for JsonObjectAccess<I>where
I: Freeze,
impl<I> RefUnwindSafe for JsonObjectAccess<I>where
I: RefUnwindSafe,
impl<I> Send for JsonObjectAccess<I>where
I: Send,
impl<I> Sync for JsonObjectAccess<I>where
I: Sync,
impl<I> Unpin for JsonObjectAccess<I>where
I: Unpin,
impl<I> UnwindSafe for JsonObjectAccess<I>where
I: 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