pub struct Values<'m>(/* private fields */);
Expand description
A stream of values from a map, lexicographically ordered by each value’s corresponding key.
The 'm
lifetime parameter refers to the lifetime of the underlying map.
Trait Implementations§
Auto Trait Implementations§
impl<'m> Freeze for Values<'m>
impl<'m> RefUnwindSafe for Values<'m>
impl<'m> Send for Values<'m>
impl<'m> Sync for Values<'m>
impl<'m> Unpin for Values<'m>
impl<'m> UnwindSafe for Values<'m>
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