pub struct SCHashMap<K, V>(_);Expand description
HashMap implementation handling collision by separate chaining
Implementations
Trait Implementations
sourceimpl<K, V> IntoIterator for SCHashMap<K, V>
impl<K, V> IntoIterator for SCHashMap<K, V>
sourceimpl<K, V> IntoMapUtil<K, V> for SCHashMap<K, V>
impl<K, V> IntoMapUtil<K, V> for SCHashMap<K, V>
fn into_keys(self) -> IntoKeys<K>ⓘNotable traits for IntoKeys<K>impl<K> Iterator for IntoKeys<K> type Item = K;
fn into_values(self) -> IntoValues<V>ⓘNotable traits for IntoValues<V>impl<V> Iterator for IntoValues<V> type Item = V;
Auto Trait Implementations
impl<K, V> RefUnwindSafe for SCHashMap<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for SCHashMap<K, V> where
K: Send,
V: Send,
impl<K, V> Sync for SCHashMap<K, V> where
K: Sync,
V: Sync,
impl<K, V> Unpin for SCHashMap<K, V> where
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for SCHashMap<K, V> where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more