pub struct MapIterator { /* private fields */ }Expand description
The Map Iterator object represents an iteration over a map. It implements the iterator protocol.
More information:
Trait Implementations§
Source§impl Clone for MapIterator
impl Clone for MapIterator
Source§fn clone(&self) -> MapIterator
fn clone(&self) -> MapIterator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MapIterator
impl Debug for MapIterator
Source§impl Drop for MapIterator
impl Drop for MapIterator
Source§impl Trace for MapIterator
impl Trace for MapIterator
Source§fn finalize_glue(&self)
fn finalize_glue(&self)
Runs Finalize::finalize() on this object and all
contained subobjects
Auto Trait Implementations§
impl !Freeze for MapIterator
impl !RefUnwindSafe for MapIterator
impl !Send for MapIterator
impl !Sync for MapIterator
impl Unpin for MapIterator
impl !UnwindSafe for MapIterator
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