pub struct OrderedMap<K, V>(/* private fields */);Expand description
An ordered map of key-value pairs.
Implementations§
Trait Implementations§
Source§impl<K: Clone, V: Clone> Clone for OrderedMap<K, V>
impl<K: Clone, V: Clone> Clone for OrderedMap<K, V>
Source§fn clone(&self) -> OrderedMap<K, V>
fn clone(&self) -> OrderedMap<K, V>
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 moreimpl<K: Eq, V: Eq> Eq for OrderedMap<K, V>
impl<K, V> StructuralPartialEq for OrderedMap<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for OrderedMap<K, V>
impl<K, V> RefUnwindSafe for OrderedMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for OrderedMap<K, V>
impl<K, V> Sync for OrderedMap<K, V>
impl<K, V> Unpin for OrderedMap<K, V>
impl<K, V> UnwindSafe for OrderedMap<K, V>where
K: UnwindSafe,
V: 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