pub struct InnerMap<K: RadixKey, V: Clone> { /* private fields */ }
Expand description
An IdMap
’s internal data.
Implementations§
Trait Implementations§
Source§impl<K: RadixKey + Eq + Ord, V: Clone + Eq + Ord> Ord for InnerMap<K, V>
impl<K: RadixKey + Eq + Ord, V: Clone + Eq + Ord> Ord for InnerMap<K, V>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<K: RadixKey + PartialOrd, V: Clone + Eq + PartialOrd> PartialOrd for InnerMap<K, V>
impl<K: RadixKey + PartialOrd, V: Clone + Eq + PartialOrd> PartialOrd for InnerMap<K, V>
impl<K: RadixKey, V: Clone + Eq> Eq for InnerMap<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for InnerMap<K, V>
impl<K, V> RefUnwindSafe for InnerMap<K, V>where
<K as RadixKey>::PatternType: RefUnwindSafe,
<K as RadixKey>::DepthType: RefUnwindSafe,
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for InnerMap<K, V>
impl<K, V> Sync for InnerMap<K, V>
impl<K, V> Unpin for InnerMap<K, V>
impl<K, V> UnwindSafe for InnerMap<K, V>where
<K as RadixKey>::PatternType: UnwindSafe + RefUnwindSafe,
<K as RadixKey>::DepthType: UnwindSafe + RefUnwindSafe,
K: UnwindSafe + RefUnwindSafe,
V: UnwindSafe + RefUnwindSafe,
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