Struct opentelemetry::trace::OrderMap
source · [−]pub struct OrderMap<K, V, S = RandomState>(_);
trace
only.Expand description
A hash table implementation that preserves insertion order across all operations.
Entries will be returned according to their insertion order when iterating over the collection.
Implementations
sourceimpl<K, V> OrderMap<K, V, RandomState>
impl<K, V> OrderMap<K, V, RandomState>
sourcepub fn new() -> OrderMap<K, V, RandomState>
pub fn new() -> OrderMap<K, V, RandomState>
Create a new map. (Does not allocate)
sourcepub fn with_capacity(n: usize) -> OrderMap<K, V, RandomState>
pub fn with_capacity(n: usize) -> OrderMap<K, V, RandomState>
Create a new map with capacity for n
key-value pairs. (Does not
allocate if n
is zero.)
Computes in O(n) time.
sourceimpl<K, V, S> OrderMap<K, V, S>
impl<K, V, S> OrderMap<K, V, S>
sourcepub fn with_capacity_and_hasher(n: usize, hash_builder: S) -> OrderMap<K, V, S>
pub fn with_capacity_and_hasher(n: usize, hash_builder: S) -> OrderMap<K, V, S>
Create a new map with capacity for n
key-value pairs. (Does not
allocate if n
is zero.)
Computes in O(n) time.
sourcepub const fn with_hasher(hash_builder: S) -> OrderMap<K, V, S>
pub const fn with_hasher(hash_builder: S) -> OrderMap<K, V, S>
Create a new map with hash_builder
.
This function is const
, so it
can be called in static
contexts.
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Return the number of key-value pairs in the map.
Computes in O(1) time.
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true if the map contains no elements.
Computes in O(1) time.
sourcepub fn iter(&self) -> Iter<'_, K, V>
pub fn iter(&self) -> Iter<'_, K, V>
Return an iterator over the key-value pairs of the map, in their order
sourcepub fn iter_mut(&mut self) -> IterMut<'_, K, V>
pub fn iter_mut(&mut self) -> IterMut<'_, K, V>
Return an iterator over the key-value pairs of the map, in their order
sourcepub fn keys(&self) -> Keys<'_, K, V>
pub fn keys(&self) -> Keys<'_, K, V>
Return an iterator over the keys of the map, in their order
sourcepub fn into_keys(self) -> IntoKeys<K, V>
pub fn into_keys(self) -> IntoKeys<K, V>
Return an owning iterator over the keys of the map, in their order
sourcepub fn values(&self) -> Values<'_, K, V>
pub fn values(&self) -> Values<'_, K, V>
Return an iterator over the values of the map, in their order
sourcepub fn values_mut(&mut self) -> ValuesMut<'_, K, V>
pub fn values_mut(&mut self) -> ValuesMut<'_, K, V>
Return an iterator over mutable references to the values of the map, in their order
sourcepub fn into_values(self) -> IntoValues<K, V>
pub fn into_values(self) -> IntoValues<K, V>
Return an owning iterator over the values of the map, in their order
sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Remove all key-value pairs in the map, while preserving its capacity.
Computes in O(n) time.
sourcepub fn truncate(&mut self, len: usize)
pub fn truncate(&mut self, len: usize)
Shortens the map, keeping the first len
elements and dropping the rest.
If len
is greater than the map’s current length, this has no effect.
sourcepub fn drain<R>(&mut self, range: R) -> Drain<'_, K, V>where
R: RangeBounds<usize>,
pub fn drain<R>(&mut self, range: R) -> Drain<'_, K, V>where
R: RangeBounds<usize>,
Clears the IndexMap
in the given index range, returning those
key-value pairs as a drain iterator.
The range may be any type that implements RangeBounds<usize>
,
including all of the std::ops::Range*
types, or even a tuple pair of
Bound
start and end values. To drain the map entirely, use RangeFull
like map.drain(..)
.
This shifts down all entries following the drained range to fill the gap, and keeps the allocated memory for reuse.
Panics if the starting point is greater than the end point or if the end point is greater than the length of the map.
sourcepub fn split_off(&mut self, at: usize) -> OrderMap<K, V, S>where
S: Clone,
pub fn split_off(&mut self, at: usize) -> OrderMap<K, V, S>where
S: Clone,
Splits the collection into two at the given index.
Returns a newly allocated map containing the elements in the range
[at, len)
. After the call, the original map will be left containing
the elements [0, at)
with its previous capacity unchanged.
Panics if at > len
.
sourceimpl<K, V, S> OrderMap<K, V, S>where
K: Hash + Eq,
S: BuildHasher,
impl<K, V, S> OrderMap<K, V, S>where
K: Hash + Eq,
S: BuildHasher,
sourcepub fn reserve(&mut self, additional: usize)
pub fn reserve(&mut self, additional: usize)
Reserve capacity for additional
more key-value pairs.
Computes in O(n) time.
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrink the capacity of the map as much as possible.
Computes in O(n) time.
sourcepub fn insert(&mut self, key: K, value: V) -> Option<V>
pub fn insert(&mut self, key: K, value: V) -> Option<V>
Insert a key-value pair in the map.
If an equivalent key already exists in the map: the key remains and
retains in its place in the order, its corresponding value is updated
with value
and the older value is returned inside Some(_)
.
If no equivalent key existed in the map: the new key-value pair is
inserted, last in order, and None
is returned.
Computes in O(1) time (amortized average).
See also entry
if you you want to insert or modify
or if you need to get the index of the corresponding key-value pair.
sourcepub fn insert_full(&mut self, key: K, value: V) -> (usize, Option<V>)
pub fn insert_full(&mut self, key: K, value: V) -> (usize, Option<V>)
Insert a key-value pair in the map, and get their index.
If an equivalent key already exists in the map: the key remains and
retains in its place in the order, its corresponding value is updated
with value
and the older value is returned inside (index, Some(_))
.
If no equivalent key existed in the map: the new key-value pair is
inserted, last in order, and (index, None)
is returned.
Computes in O(1) time (amortized average).
See also entry
if you you want to insert or modify
or if you need to get the index of the corresponding key-value pair.
sourcepub fn entry(&mut self, key: K) -> Entry<'_, K, V>
pub fn entry(&mut self, key: K) -> Entry<'_, K, V>
Get the given key’s corresponding entry in the map for insertion and/or in-place manipulation.
Computes in O(1) time (amortized average).
sourcepub fn contains_key<Q>(&self, key: &Q) -> boolwhere
Q: Hash + Equivalent<K> + ?Sized,
pub fn contains_key<Q>(&self, key: &Q) -> boolwhere
Q: Hash + Equivalent<K> + ?Sized,
Return true
if an equivalent to key
exists in the map.
Computes in O(1) time (average).
sourcepub fn get<Q>(&self, key: &Q) -> Option<&V>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn get<Q>(&self, key: &Q) -> Option<&V>where
Q: Hash + Equivalent<K> + ?Sized,
Return a reference to the value stored for key
, if it is present,
else None
.
Computes in O(1) time (average).
sourcepub fn get_key_value<Q>(&self, key: &Q) -> Option<(&K, &V)>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn get_key_value<Q>(&self, key: &Q) -> Option<(&K, &V)>where
Q: Hash + Equivalent<K> + ?Sized,
Return references to the key-value pair stored for key
,
if it is present, else None
.
Computes in O(1) time (average).
sourcepub fn get_full<Q>(&self, key: &Q) -> Option<(usize, &K, &V)>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn get_full<Q>(&self, key: &Q) -> Option<(usize, &K, &V)>where
Q: Hash + Equivalent<K> + ?Sized,
Return item index, key and value
sourcepub fn get_index_of<Q>(&self, key: &Q) -> Option<usize>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn get_index_of<Q>(&self, key: &Q) -> Option<usize>where
Q: Hash + Equivalent<K> + ?Sized,
Return item index, if it exists in the map
Computes in O(1) time (average).
sourcepub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>where
Q: Hash + Equivalent<K> + ?Sized,
Return a mutable reference to the element pointed at by key
, if it exists.
sourcepub fn get_full_mut<Q>(&mut self, key: &Q) -> Option<(usize, &K, &mut V)>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn get_full_mut<Q>(&mut self, key: &Q) -> Option<(usize, &K, &mut V)>where
Q: Hash + Equivalent<K> + ?Sized,
Return a mutable reference to the element pointed at by key
, if it exists.
It also returns the element’s index and its key.
sourcepub fn shift_remove<Q>(&mut self, key: &Q) -> Option<V>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn shift_remove<Q>(&mut self, key: &Q) -> Option<V>where
Q: Hash + Equivalent<K> + ?Sized,
Remove the key-value pair equivalent to key
and return
its value.
Like Vec::remove
, the pair is removed by shifting all of the
elements that follow it, preserving their relative order.
This perturbs the index of all of those elements!
Return None
if key
is not in map.
Computes in O(n) time (average).
sourcepub fn shift_remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn shift_remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>where
Q: Hash + Equivalent<K> + ?Sized,
Remove and return the key-value pair equivalent to key
.
Like Vec::remove
, the pair is removed by shifting all of the
elements that follow it, preserving their relative order.
This perturbs the index of all of those elements!
Return None
if key
is not in map.
Computes in O(n) time (average).
sourcepub fn shift_remove_full<Q>(&mut self, key: &Q) -> Option<(usize, K, V)>where
Q: Hash + Equivalent<K> + ?Sized,
pub fn shift_remove_full<Q>(&mut self, key: &Q) -> Option<(usize, K, V)>where
Q: Hash + Equivalent<K> + ?Sized,
Remove the key-value pair equivalent to key
and return it and
the index it had.
Like Vec::remove
, the pair is removed by shifting all of the
elements that follow it, preserving their relative order.
This perturbs the index of all of those elements!
Return None
if key
is not in map.
Computes in O(n) time (average).
sourceimpl<K, V, S> OrderMap<K, V, S>
impl<K, V, S> OrderMap<K, V, S>
sourcepub fn get_index(&self, index: usize) -> Option<(&K, &V)>
pub fn get_index(&self, index: usize) -> Option<(&K, &V)>
Get a key-value pair by index
Valid indices are 0 <= index < self.len()
Computes in O(1) time.
sourcepub fn get_index_mut(&mut self, index: usize) -> Option<(&mut K, &mut V)>
pub fn get_index_mut(&mut self, index: usize) -> Option<(&mut K, &mut V)>
Get a key-value pair by index
Valid indices are 0 <= index < self.len()
Computes in O(1) time.
sourcepub fn first_mut(&mut self) -> Option<(&K, &mut V)>
pub fn first_mut(&mut self) -> Option<(&K, &mut V)>
Get the first key-value pair, with mutable access to the value
Computes in O(1) time.
sourcepub fn last_mut(&mut self) -> Option<(&K, &mut V)>
pub fn last_mut(&mut self) -> Option<(&K, &mut V)>
Get the last key-value pair, with mutable access to the value
Computes in O(1) time.
sourcepub fn shift_remove_index(&mut self, index: usize) -> Option<(K, V)>
pub fn shift_remove_index(&mut self, index: usize) -> Option<(K, V)>
Remove the key-value pair by index
Valid indices are 0 <= index < self.len()
Like Vec::remove
, the pair is removed by shifting all of the
elements that follow it, preserving their relative order.
This perturbs the index of all of those elements!
Computes in O(n) time (average).
Trait Implementations
sourceimpl<'a, K, V, S> Extend<(&'a K, &'a V)> for OrderMap<K, V, S>where
K: 'a + Hash + Eq + Copy,
V: 'a + Copy,
S: BuildHasher,
impl<'a, K, V, S> Extend<(&'a K, &'a V)> for OrderMap<K, V, S>where
K: 'a + Hash + Eq + Copy,
V: 'a + Copy,
S: BuildHasher,
sourcefn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = (&'a K, &'a V)>,
fn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = (&'a K, &'a V)>,
Extend the map with all key-value pairs in the iterable.
See the first extend method for more details.
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl<K, V, S> Extend<(K, V)> for OrderMap<K, V, S>where
K: Hash + Eq,
S: BuildHasher,
impl<K, V, S> Extend<(K, V)> for OrderMap<K, V, S>where
K: Hash + Eq,
S: BuildHasher,
sourcefn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = (K, V)>,
fn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = (K, V)>,
Extend the map with all key-value pairs in the iterable.
This is equivalent to calling insert
for each of
them in order, which means that for keys that already existed
in the map, their value is updated but it keeps the existing order.
New keys are inserted in the order they appear in the sequence. If equivalents of a key occur more than once, the last corresponding value prevails.
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl<S> Extend<KeyValue> for OrderMap<Key, Value, S>where
S: BuildHasher,
impl<S> Extend<KeyValue> for OrderMap<Key, Value, S>where
S: BuildHasher,
sourcefn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = KeyValue>,
fn extend<I>(&mut self, iterable: I)where
I: IntoIterator<Item = KeyValue>,
Extend the map with all key-value pairs in the iterable.
This is equivalent to calling insert
for each of
them in order, which means that for keys that already existed
in the map, their value is updated but it keeps the existing order.
New keys are inserted in the order they appear in the sequence. If equivalents of a key occur more than once, the last corresponding value prevails.
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl<K, V, S> FromIterator<(K, V)> for OrderMap<K, V, S>where
K: Hash + Eq,
S: BuildHasher + Default,
impl<K, V, S> FromIterator<(K, V)> for OrderMap<K, V, S>where
K: Hash + Eq,
S: BuildHasher + Default,
sourceimpl<S> FromIterator<KeyValue> for OrderMap<Key, Value, S>where
S: BuildHasher + Default,
impl<S> FromIterator<KeyValue> for OrderMap<Key, Value, S>where
S: BuildHasher + Default,
sourceimpl<K, V, Q, S> Index<&Q> for OrderMap<K, V, S>where
Q: Hash + Equivalent<K> + ?Sized,
K: Hash + Eq,
S: BuildHasher,
impl<K, V, Q, S> Index<&Q> for OrderMap<K, V, S>where
Q: Hash + Equivalent<K> + ?Sized,
K: Hash + Eq,
S: BuildHasher,
Access OrderMap
values corresponding to a key.
Panics if the value is missing.
sourceimpl<K, V, S> Index<usize> for OrderMap<K, V, S>
impl<K, V, S> Index<usize> for OrderMap<K, V, S>
Access IndexMap
values at indexed positions.
It panics if the index is out of bounds.
sourceimpl<K, V, Q, S> IndexMut<&Q> for OrderMap<K, V, S>where
Q: Hash + Equivalent<K> + ?Sized,
K: Hash + Eq,
S: BuildHasher,
impl<K, V, Q, S> IndexMut<&Q> for OrderMap<K, V, S>where
Q: Hash + Equivalent<K> + ?Sized,
K: Hash + Eq,
S: BuildHasher,
Access Ordermap
values corresponding to a key.
Mutable indexing allows changing / updating values of key-value pairs that are already present.
You can not insert new pairs with index syntax, use .insert()
.
sourceimpl<K, V, S> IndexMut<usize> for OrderMap<K, V, S>
impl<K, V, S> IndexMut<usize> for OrderMap<K, V, S>
Access IndexMap
values at indexed positions.
Mutable indexing allows changing / updating indexed values that are already present.
You can not insert new values with index syntax, use .insert()
.
Examples
use indexmap::IndexMap;
let mut map = IndexMap::new();
for word in "Lorem ipsum dolor sit amet".split_whitespace() {
map.insert(word.to_lowercase(), word.to_string());
}
let lorem = &mut map[0];
assert_eq!(lorem, "Lorem");
lorem.retain(char::is_lowercase);
assert_eq!(map["lorem"], "orem");
use indexmap::IndexMap;
let mut map = IndexMap::new();
map.insert("foo", 1);
map[10] = 1; // panics!
sourceimpl<'a, K, V, S> IntoIterator for &'a OrderMap<K, V, S>
impl<'a, K, V, S> IntoIterator for &'a OrderMap<K, V, S>
sourceimpl<'a, K, V, S> IntoIterator for &'a mut OrderMap<K, V, S>
impl<'a, K, V, S> IntoIterator for &'a mut OrderMap<K, V, S>
sourceimpl<K, V, S> IntoIterator for OrderMap<K, V, S>
impl<K, V, S> IntoIterator for OrderMap<K, V, S>
sourceimpl<K, V1, S1, V2, S2> PartialEq<OrderMap<K, V2, S2>> for OrderMap<K, V1, S1>where
K: Hash + Eq,
V1: PartialEq<V2>,
S1: BuildHasher,
S2: BuildHasher,
impl<K, V1, S1, V2, S2> PartialEq<OrderMap<K, V2, S2>> for OrderMap<K, V1, S1>where
K: Hash + Eq,
V1: PartialEq<V2>,
S1: BuildHasher,
S2: BuildHasher,
impl<K, V, S> Eq for OrderMap<K, V, S>where
K: Eq + Hash,
V: Eq,
S: BuildHasher,
Auto Trait Implementations
impl<K, V, S> RefUnwindSafe for OrderMap<K, V, S>where
K: RefUnwindSafe,
S: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V, S> Send for OrderMap<K, V, S>where
K: Send,
S: Send,
V: Send,
impl<K, V, S> Sync for OrderMap<K, V, S>where
K: Sync,
S: Sync,
V: Sync,
impl<K, V, S> Unpin for OrderMap<K, V, S>where
K: Unpin,
S: Unpin,
V: Unpin,
impl<K, V, S> UnwindSafe for OrderMap<K, V, S>where
K: UnwindSafe,
S: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.