pub struct SCHashMap<K, V> { /* private fields */ }Trait Implementations
sourceimpl<K: Clone + Hash + Ord, V: Clone> Map<K, V> for SCHashMap<K, V>
impl<K: Clone + Hash + Ord, V: Clone> Map<K, V> for SCHashMap<K, V>
fn new(capacity: usize) -> Self
fn len(&self) -> usize
fn get(&self, key: K) -> Option<V>
fn insert(&mut self, key: K, value: V) -> Option<V>
fn remove(&mut self, key: K) -> Option<V>
fn entries(&self) -> Vec<Entry<K, V>>
fn keys(&self) -> Vec<K>
fn values(&self) -> Vec<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