Struct nekolib::ds::cuckoo_hash_map::CuckooHashMap
source · pub struct CuckooHashMap<K, V> { /* private fields */ }
Expand description
Implementations§
source§impl<K: Eq + Hash, V> CuckooHashMap<K, V>
impl<K: Eq + Hash, V> CuckooHashMap<K, V>
Trait Implementations§
source§impl<K: Clone, V: Clone> Clone for CuckooHashMap<K, V>
impl<K: Clone, V: Clone> Clone for CuckooHashMap<K, V>
source§fn clone(&self) -> CuckooHashMap<K, V>
fn clone(&self) -> CuckooHashMap<K, V>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<K: Eq + Hash, V> Extend<(K, V)> for CuckooHashMap<K, V>
impl<K: Eq + Hash, V> Extend<(K, V)> for CuckooHashMap<K, V>
source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = (K, V)>,
fn extend<I>(&mut self, iter: I)where I: IntoIterator<Item = (K, V)>,
Extends a collection with the contents of an iterator. Read more
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
source§impl<K: Eq + Hash, V> FromIterator<(K, V)> for CuckooHashMap<K, V>
impl<K: Eq + Hash, V> FromIterator<(K, V)> for CuckooHashMap<K, V>
Auto Trait Implementations§
impl<K, V> RefUnwindSafe for CuckooHashMap<K, V>where K: RefUnwindSafe, V: RefUnwindSafe,
impl<K, V> Send for CuckooHashMap<K, V>where K: Send, V: Send,
impl<K, V> Sync for CuckooHashMap<K, V>where K: Sync, V: Sync,
impl<K, V> Unpin for CuckooHashMap<K, V>where K: Unpin, V: Unpin,
impl<K, V> UnwindSafe for CuckooHashMap<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