pub struct TreapMap<K: Ord, V> { /* private fields */ }Expand description
Ordered map backed by a treap.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for TreapMap<K, V>
impl<K, V> RefUnwindSafe for TreapMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for TreapMap<K, V>
impl<K, V> Sync for TreapMap<K, V>
impl<K, V> Unpin for TreapMap<K, V>
impl<K, V> UnsafeUnpin for TreapMap<K, V>
impl<K, V> UnwindSafe for TreapMap<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