pub struct TreeMap<K, V> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<K: Default + PartialOrd, V: Default, Iter: Iterator<Item = (K, V)>> From<Iter> for TreeMap<K, V>
impl<K: Default + PartialOrd, V: Default, Iter: Iterator<Item = (K, V)>> From<Iter> for TreeMap<K, V>
Source§impl<K: PartialOrd, V> Index<K> for TreeMap<K, V>
impl<K: PartialOrd, V> Index<K> for TreeMap<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for TreeMap<K, V>
impl<K, V> RefUnwindSafe for TreeMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for TreeMap<K, V>
impl<K, V> Sync for TreeMap<K, V>
impl<K, V> Unpin for TreeMap<K, V>
impl<K, V> UnwindSafe for TreeMap<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