Enum SsoHashMap
pub enum SsoHashMap<K, V> {
Array(ArrayVec<(K, V), 8>),
Map(HashMap<K, V, FxBuildHasher>),
}Expand description
Small-storage-optimized implementation of a map.
Stores elements in a small array up to a certain length
and switches to HashMap when that length is exceeded.
Variants§
Implementations§
§impl<K, V> SsoHashMap<K, V>
impl<K, V> SsoHashMap<K, V>
pub fn new() -> SsoHashMap<K, V>
pub fn new() -> SsoHashMap<K, V>
Creates an empty SsoHashMap.
pub fn with_capacity(cap: usize) -> SsoHashMap<K, V>
pub fn with_capacity(cap: usize) -> SsoHashMap<K, V>
Creates an empty SsoHashMap with the specified capacity.
pub fn clear(&mut self)
pub fn clear(&mut self)
Clears the map, removing all key-value pairs. Keeps the allocated memory for reuse.
pub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns the number of elements the map can hold without reallocating.
pub fn iter(
&self,
) -> Either<Map<Iter<'_, (K, V)>, fn(&(K, V)) -> (&K, &V)>, Iter<'_, K, V>>
pub fn iter( &self, ) -> Either<Map<Iter<'_, (K, V)>, fn(&(K, V)) -> (&K, &V)>, Iter<'_, K, V>>
An iterator visiting all key-value pairs in arbitrary order.
The iterator element type is (&'a K, &'a V).
pub fn iter_mut(&mut self) -> impl Iterator<Item = (&K, &mut V)>
pub fn iter_mut(&mut self) -> impl Iterator<Item = (&K, &mut V)>
An iterator visiting all key-value pairs in arbitrary order,
with mutable references to the values.
The iterator element type is (&'a K, &'a mut V).
pub fn keys(&self) -> impl Iterator<Item = &K>
pub fn keys(&self) -> impl Iterator<Item = &K>
An iterator visiting all keys in arbitrary order.
The iterator element type is &'a K.
pub fn values(&self) -> impl Iterator<Item = &V>
pub fn values(&self) -> impl Iterator<Item = &V>
An iterator visiting all values in arbitrary order.
The iterator element type is &'a V.
pub fn values_mut(&mut self) -> impl Iterator<Item = &mut V>
pub fn values_mut(&mut self) -> impl Iterator<Item = &mut V>
An iterator visiting all values mutably in arbitrary order.
The iterator element type is &'a mut V.
§impl<K, V> SsoHashMap<K, V>
impl<K, V> SsoHashMap<K, V>
pub fn reserve(&mut self, additional: usize)
pub fn reserve(&mut self, additional: usize)
Reserves capacity for at least additional more elements to be inserted
in the SsoHashMap. The collection may reserve more space to avoid
frequent reallocations.
pub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the map as much as possible. It will drop down as much as possible while maintaining the internal rules and possibly leaving some space in accordance with the resize policy.
pub fn retain<F>(&mut self, f: F)
pub fn retain<F>(&mut self, f: F)
Retains only the elements specified by the predicate.
pub fn insert(&mut self, key: K, value: V) -> Option<V>
pub fn insert(&mut self, key: K, value: V) -> Option<V>
Inserts a key-value pair into the map.
If the map did not have this key present, None is returned.
If the map did have this key present, the value is updated, and the old
value is returned. The key is not updated, though; this matters for
types that can be == without being identical. See the [module-level
documentation] for more.
pub fn remove(&mut self, key: &K) -> Option<V>
pub fn remove(&mut self, key: &K) -> Option<V>
Removes a key from the map, returning the value at the key if the key was previously in the map.
pub fn remove_entry(&mut self, key: &K) -> Option<(K, V)>
pub fn remove_entry(&mut self, key: &K) -> Option<(K, V)>
Removes a key from the map, returning the stored key and value if the key was previously in the map.
pub fn get_mut(&mut self, key: &K) -> Option<&mut V>
pub fn get_mut(&mut self, key: &K) -> Option<&mut V>
Returns a mutable reference to the value corresponding to the key.
pub fn get_key_value(&self, key: &K) -> Option<(&K, &V)>
pub fn get_key_value(&self, key: &K) -> Option<(&K, &V)>
Returns the key-value pair corresponding to the supplied key.
pub fn contains_key(&self, key: &K) -> bool
pub fn contains_key(&self, key: &K) -> bool
Returns true if the map contains a value for the specified key.
Trait Implementations§
§impl<K, V> Clone for SsoHashMap<K, V>
impl<K, V> Clone for SsoHashMap<K, V>
§fn clone(&self) -> SsoHashMap<K, V>
fn clone(&self) -> SsoHashMap<K, V>
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more§impl<K, V> Debug for SsoHashMap<K, V>
impl<K, V> Debug for SsoHashMap<K, V>
§impl<K, V> Default for SsoHashMap<K, V>
impl<K, V> Default for SsoHashMap<K, V>
§fn default() -> SsoHashMap<K, V>
fn default() -> SsoHashMap<K, V>
§impl<'a, K, V> Extend<(&'a K, &'a V)> for SsoHashMap<K, V>
impl<'a, K, V> Extend<(&'a K, &'a V)> for SsoHashMap<K, V>
§fn extend_one(&mut self, _: (&'a K, &'a V))
fn extend_one(&mut self, _: (&'a K, &'a V))
extend_one)§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)§impl<K, V> Extend<(K, V)> for SsoHashMap<K, V>
impl<K, V> Extend<(K, V)> for SsoHashMap<K, V>
§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)>,
§fn extend_one(&mut self, _: (K, V))
fn extend_one(&mut self, _: (K, V))
extend_one)§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)§impl<K, V> FromIterator<(K, V)> for SsoHashMap<K, V>
impl<K, V> FromIterator<(K, V)> for SsoHashMap<K, V>
§fn from_iter<I>(iter: I) -> SsoHashMap<K, V>where
I: IntoIterator<Item = (K, V)>,
fn from_iter<I>(iter: I) -> SsoHashMap<K, V>where
I: IntoIterator<Item = (K, V)>,
§impl<'a, K, V> Index<&'a K> for SsoHashMap<K, V>
impl<'a, K, V> Index<&'a K> for SsoHashMap<K, V>
§impl<'a, K, V> IntoIterator for &'a SsoHashMap<K, V>
impl<'a, K, V> IntoIterator for &'a SsoHashMap<K, V>
§impl<'a, K, V> IntoIterator for &'a mut SsoHashMap<K, V>
impl<'a, K, V> IntoIterator for &'a mut SsoHashMap<K, V>
§impl<K, V> IntoIterator for SsoHashMap<K, V>
impl<K, V> IntoIterator for SsoHashMap<K, V>
Auto Trait Implementations§
impl<K, V> DynSend for SsoHashMap<K, V>
impl<K, V> DynSync for SsoHashMap<K, V>
impl<K, V> Freeze for SsoHashMap<K, V>
impl<K, V> RefUnwindSafe for SsoHashMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for SsoHashMap<K, V>
impl<K, V> Sync for SsoHashMap<K, V>
impl<K, V> Unpin for SsoHashMap<K, V>
impl<K, V> UnwindSafe for SsoHashMap<K, V>where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
clone_to_uninit)Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoEither for T
impl<T> IntoEither for T
§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.