Struct EntityIndexMap

Source
pub struct EntityIndexMap<V>(/* private fields */);
Expand description

A IndexMap pre-configured to use EntityHash hashing.

Implementations§

Source§

impl<V> EntityIndexMap<V>

Source

pub const fn new() -> EntityIndexMap<V>

Creates an empty EntityIndexMap.

Equivalent to IndexMap::with_hasher(EntityHash).

Source

pub fn with_capacity(n: usize) -> EntityIndexMap<V>

Creates an empty EntityIndexMap with the specified capacity.

Equivalent to [IndexMap::with_capacity_and_hasher(n, EntityHash)].

Source

pub fn into_inner(self) -> IndexMap<Entity, V, EntityHash>

Returns the inner IndexMap.

Source

pub fn as_slice(&self) -> &Slice<V>

Returns a slice of all the key-value pairs in the map.

Equivalent to IndexMap::as_slice.

Source

pub fn as_mut_slice(&mut self) -> &mut Slice<V>

Returns a mutable slice of all the key-value pairs in the map.

Equivalent to IndexMap::as_mut_slice.

Source

pub fn into_boxed_slice(self) -> Box<Slice<V>>

Converts into a boxed slice of all the key-value pairs in the map.

Equivalent to IndexMap::into_boxed_slice.

Source

pub fn get_range<R>(&self, range: R) -> Option<&Slice<V>>
where R: RangeBounds<usize>,

Returns a slice of key-value pairs in the given range of indices.

Equivalent to IndexMap::get_range.

Source

pub fn get_range_mut<R>(&mut self, range: R) -> Option<&mut Slice<V>>
where R: RangeBounds<usize>,

Returns a mutable slice of key-value pairs in the given range of indices.

Equivalent to IndexMap::get_range_mut.

Source

pub fn iter(&self) -> Iter<'_, V>

Return an iterator over the key-value pairs of the map, in their order.

Equivalent to IndexMap::iter.

Source

pub fn iter_mut(&mut self) -> IterMut<'_, V>

Return a mutable iterator over the key-value pairs of the map, in their order.

Equivalent to IndexMap::iter_mut.

Source

pub fn drain<R>(&mut self, range: R) -> Drain<'_, V>
where R: RangeBounds<usize>,

Clears the IndexMap in the given index range, returning those key-value pairs as a drain iterator.

Equivalent to IndexMap::drain.

Source

pub fn keys(&self) -> Keys<'_, V>

Return an iterator over the keys of the map, in their order.

Equivalent to IndexMap::keys.

Source

pub fn into_keys(self) -> IntoKeys<V>

Return an owning iterator over the keys of the map, in their order.

Equivalent to IndexMap::into_keys.

Methods from Deref<Target = IndexMap<Entity, V, EntityHash>>§

Source

pub fn capacity(&self) -> usize

Return the number of elements the map can hold without reallocating.

This number is a lower bound; the map might be able to hold more, but is guaranteed to be able to hold at least this many.

Computes in O(1) time.

Source

pub fn hasher(&self) -> &S

Return a reference to the map’s BuildHasher.

Source

pub fn len(&self) -> usize

Return the number of key-value pairs in the map.

Computes in O(1) time.

Source

pub fn is_empty(&self) -> bool

Returns true if the map contains no elements.

Computes in O(1) time.

Source

pub fn iter(&self) -> Iter<'_, K, V>

Return an iterator over the key-value pairs of the map, in their order

Source

pub fn iter_mut(&mut self) -> IterMut<'_, K, V>

Return an iterator over the key-value pairs of the map, in their order

Source

pub fn keys(&self) -> Keys<'_, K, V>

Return an iterator over the keys of the map, in their order

Source

pub fn values(&self) -> Values<'_, K, V>

Return an iterator over the values of the map, in their order

Source

pub fn values_mut(&mut self) -> ValuesMut<'_, K, V>

Return an iterator over mutable references to the values of the map, in their order

Source

pub fn clear(&mut self)

Remove all key-value pairs in the map, while preserving its capacity.

Computes in O(n) time.

Source

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.

Source

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.

Source

pub fn split_off(&mut self, at: usize) -> IndexMap<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.

Source

pub fn reserve(&mut self, additional: usize)

Reserve capacity for additional more key-value pairs.

Computes in O(n) time.

Source

pub fn reserve_exact(&mut self, additional: usize)

Reserve capacity for additional more key-value pairs, without over-allocating.

Unlike reserve, this does not deliberately over-allocate the entry capacity to avoid frequent re-allocations. However, the underlying data structures may still have internal capacity requirements, and the allocator itself may give more space than requested, so this cannot be relied upon to be precisely minimal.

Computes in O(n) time.

Source

pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError>

Try to reserve capacity for additional more key-value pairs.

Computes in O(n) time.

Source

pub fn try_reserve_exact( &mut self, additional: usize, ) -> Result<(), TryReserveError>

Try to reserve capacity for additional more key-value pairs, without over-allocating.

Unlike try_reserve, this does not deliberately over-allocate the entry capacity to avoid frequent re-allocations. However, the underlying data structures may still have internal capacity requirements, and the allocator itself may give more space than requested, so this cannot be relied upon to be precisely minimal.

Computes in O(n) time.

Source

pub fn shrink_to_fit(&mut self)

Shrink the capacity of the map as much as possible.

Computes in O(n) time.

Source

pub fn shrink_to(&mut self, min_capacity: usize)

Shrink the capacity of the map with a lower limit.

Computes in O(n) time.

Source

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 want to insert or modify, or insert_full if you need to get the index of the corresponding key-value pair.

Source

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 want to insert or modify.

Source

pub fn insert_sorted(&mut self, key: K, value: V) -> (usize, Option<V>)
where K: Ord,

Insert a key-value pair in the map at its ordered position among sorted keys.

This is equivalent to finding the position with binary_search_keys, then either updating it or calling insert_before for a new key.

If the sorted key is found in the map, its corresponding value is updated with value, and the older value is returned inside (index, Some(_)). Otherwise, the new key-value pair is inserted at the sorted position, and (index, None) is returned.

If the existing keys are not already sorted, then the insertion index is unspecified (like slice::binary_search), but the key-value pair is moved to or inserted at that position regardless.

Computes in O(n) time (average). Instead of repeating calls to insert_sorted, it may be faster to call batched insert or extend and only call sort_keys or sort_unstable_keys once.

Source

pub fn insert_before( &mut self, index: usize, key: K, value: V, ) -> (usize, Option<V>)

Insert a key-value pair in the map before the entry at the given index, or at the end.

If an equivalent key already exists in the map: the key remains and is moved to the new position in the map, its corresponding value is updated with value, and the older value is returned inside Some(_). The returned index will either be the given index or one less, depending on how the entry moved. (See shift_insert for different behavior here.)

If no equivalent key existed in the map: the new key-value pair is inserted exactly at the given index, and None is returned.

Panics if index is out of bounds. Valid indices are 0..=map.len() (inclusive).

Computes in O(n) time (average).

See also entry if you want to insert or modify, perhaps only using the index for new entries with VacantEntry::shift_insert.

§Examples
use indexmap::IndexMap;
let mut map: IndexMap<char, ()> = ('a'..='z').map(|c| (c, ())).collect();

// The new key '*' goes exactly at the given index.
assert_eq!(map.get_index_of(&'*'), None);
assert_eq!(map.insert_before(10, '*', ()), (10, None));
assert_eq!(map.get_index_of(&'*'), Some(10));

// Moving the key 'a' up will shift others down, so this moves *before* 10 to index 9.
assert_eq!(map.insert_before(10, 'a', ()), (9, Some(())));
assert_eq!(map.get_index_of(&'a'), Some(9));
assert_eq!(map.get_index_of(&'*'), Some(10));

// Moving the key 'z' down will shift others up, so this moves to exactly 10.
assert_eq!(map.insert_before(10, 'z', ()), (10, Some(())));
assert_eq!(map.get_index_of(&'z'), Some(10));
assert_eq!(map.get_index_of(&'*'), Some(11));

// Moving or inserting before the endpoint is also valid.
assert_eq!(map.len(), 27);
assert_eq!(map.insert_before(map.len(), '*', ()), (26, Some(())));
assert_eq!(map.get_index_of(&'*'), Some(26));
assert_eq!(map.insert_before(map.len(), '+', ()), (27, None));
assert_eq!(map.get_index_of(&'+'), Some(27));
assert_eq!(map.len(), 28);
Source

pub fn shift_insert(&mut self, index: usize, key: K, value: V) -> Option<V>

Insert a key-value pair in the map at the given index.

If an equivalent key already exists in the map: the key remains and is moved to the given index in the map, its corresponding value is updated with value, and the older value is returned inside Some(_). Note that existing entries cannot be moved to index == map.len()! (See insert_before for different behavior here.)

If no equivalent key existed in the map: the new key-value pair is inserted at the given index, and None is returned.

Panics if index is out of bounds. Valid indices are 0..map.len() (exclusive) when moving an existing entry, or 0..=map.len() (inclusive) when inserting a new key.

Computes in O(n) time (average).

See also entry if you want to insert or modify, perhaps only using the index for new entries with VacantEntry::shift_insert.

§Examples
use indexmap::IndexMap;
let mut map: IndexMap<char, ()> = ('a'..='z').map(|c| (c, ())).collect();

// The new key '*' goes exactly at the given index.
assert_eq!(map.get_index_of(&'*'), None);
assert_eq!(map.shift_insert(10, '*', ()), None);
assert_eq!(map.get_index_of(&'*'), Some(10));

// Moving the key 'a' up to 10 will shift others down, including the '*' that was at 10.
assert_eq!(map.shift_insert(10, 'a', ()), Some(()));
assert_eq!(map.get_index_of(&'a'), Some(10));
assert_eq!(map.get_index_of(&'*'), Some(9));

// Moving the key 'z' down to 9 will shift others up, including the '*' that was at 9.
assert_eq!(map.shift_insert(9, 'z', ()), Some(()));
assert_eq!(map.get_index_of(&'z'), Some(9));
assert_eq!(map.get_index_of(&'*'), Some(10));

// Existing keys can move to len-1 at most, but new keys can insert at the endpoint.
assert_eq!(map.len(), 27);
assert_eq!(map.shift_insert(map.len() - 1, '*', ()), Some(()));
assert_eq!(map.get_index_of(&'*'), Some(26));
assert_eq!(map.shift_insert(map.len(), '+', ()), None);
assert_eq!(map.get_index_of(&'+'), Some(27));
assert_eq!(map.len(), 28);
use indexmap::IndexMap;
let mut map: IndexMap<char, ()> = ('a'..='z').map(|c| (c, ())).collect();

// This is an invalid index for moving an existing key!
map.shift_insert(map.len(), 'a', ());
Source

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).

Source

pub fn splice<R, I>( &mut self, range: R, replace_with: I, ) -> Splice<'_, <I as IntoIterator>::IntoIter, K, V, S>
where R: RangeBounds<usize>, I: IntoIterator<Item = (K, V)>,

Creates a splicing iterator that replaces the specified range in the map with the given replace_with key-value iterator and yields the removed items. replace_with does not need to be the same length as range.

The range is removed even if the iterator is not consumed until the end. It is unspecified how many elements are removed from the map if the Splice value is leaked.

The input iterator replace_with is only consumed when the Splice value is dropped. If a key from the iterator matches an existing entry in the map (outside of range), then the value will be updated in that position. Otherwise, the new key-value pair will be inserted in the replaced range.

Panics if the starting point is greater than the end point or if the end point is greater than the length of the map.

§Examples
use indexmap::IndexMap;

let mut map = IndexMap::from([(0, '_'), (1, 'a'), (2, 'b'), (3, 'c'), (4, 'd')]);
let new = [(5, 'E'), (4, 'D'), (3, 'C'), (2, 'B'), (1, 'A')];
let removed: Vec<_> = map.splice(2..4, new).collect();

// 1 and 4 got new values, while 5, 3, and 2 were newly inserted.
assert!(map.into_iter().eq([(0, '_'), (1, 'A'), (5, 'E'), (3, 'C'), (2, 'B'), (4, 'D')]));
assert_eq!(removed, &[(2, 'b'), (3, 'c')]);
Source

pub fn append<S2>(&mut self, other: &mut IndexMap<K, V, S2>)

Moves all key-value pairs from other into self, leaving other empty.

This is equivalent to calling insert for each key-value pair from other in order, which means that for keys that already exist in self, their value is updated in the current position.

§Examples
use indexmap::IndexMap;

// Note: Key (3) is present in both maps.
let mut a = IndexMap::from([(3, "c"), (2, "b"), (1, "a")]);
let mut b = IndexMap::from([(3, "d"), (4, "e"), (5, "f")]);
let old_capacity = b.capacity();

a.append(&mut b);

assert_eq!(a.len(), 5);
assert_eq!(b.len(), 0);
assert_eq!(b.capacity(), old_capacity);

assert!(a.keys().eq(&[3, 2, 1, 4, 5]));
assert_eq!(a[&3], "d"); // "c" was overwritten.
Source

pub fn contains_key<Q>(&self, key: &Q) -> bool
where Q: Hash + Equivalent<K> + ?Sized,

Return true if an equivalent to key exists in the map.

Computes in O(1) time (average).

Source

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).

Source

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).

Source

pub fn get_full<Q>(&self, key: &Q) -> Option<(usize, &K, &V)>
where Q: Hash + Equivalent<K> + ?Sized,

Return item index, key and value

Source

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).

Source

pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
where Q: Hash + Equivalent<K> + ?Sized,

Source

pub fn get_full_mut<Q>(&mut self, key: &Q) -> Option<(usize, &K, &mut V)>
where Q: Hash + Equivalent<K> + ?Sized,

Source

pub fn remove<Q>(&mut self, key: &Q) -> Option<V>
where Q: Hash + Equivalent<K> + ?Sized,

👎Deprecated: remove disrupts the map order – use swap_remove or shift_remove for explicit behavior.

Remove the key-value pair equivalent to key and return its value.

NOTE: This is equivalent to .swap_remove(key), replacing this entry’s position with the last element, and it is deprecated in favor of calling that explicitly. If you need to preserve the relative order of the keys in the map, use .shift_remove(key) instead.

Source

pub fn remove_entry<Q>(&mut self, key: &Q) -> Option<(K, V)>
where Q: Hash + Equivalent<K> + ?Sized,

👎Deprecated: remove_entry disrupts the map order – use swap_remove_entry or shift_remove_entry for explicit behavior.

Remove and return the key-value pair equivalent to key.

NOTE: This is equivalent to .swap_remove_entry(key), replacing this entry’s position with the last element, and it is deprecated in favor of calling that explicitly. If you need to preserve the relative order of the keys in the map, use .shift_remove_entry(key) instead.

Source

pub fn swap_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::swap_remove, the pair is removed by swapping it with the last element of the map and popping it off. This perturbs the position of what used to be the last element!

Return None if key is not in map.

Computes in O(1) time (average).

Source

pub fn swap_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::swap_remove, the pair is removed by swapping it with the last element of the map and popping it off. This perturbs the position of what used to be the last element!

Return None if key is not in map.

Computes in O(1) time (average).

Source

pub fn swap_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::swap_remove, the pair is removed by swapping it with the last element of the map and popping it off. This perturbs the position of what used to be the last element!

Return None if key is not in map.

Computes in O(1) time (average).

Source

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).

Source

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).

Source

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).

Source

pub fn pop(&mut self) -> Option<(K, V)>

Remove the last key-value pair

This preserves the order of the remaining elements.

Computes in O(1) time (average).

Source

pub fn retain<F>(&mut self, keep: F)
where F: FnMut(&K, &mut V) -> bool,

Scan through each key-value pair in the map and keep those where the closure keep returns true.

The elements are visited in order, and remaining elements keep their order.

Computes in O(n) time (average).

Source

pub fn sort_keys(&mut self)
where K: Ord,

Sort the map’s key-value pairs by the default ordering of the keys.

This is a stable sort – but equivalent keys should not normally coexist in a map at all, so sort_unstable_keys is preferred because it is generally faster and doesn’t allocate auxiliary memory.

See sort_by for details.

Source

pub fn sort_by<F>(&mut self, cmp: F)
where F: FnMut(&K, &V, &K, &V) -> Ordering,

Sort the map’s key-value pairs in place using the comparison function cmp.

The comparison function receives two key and value pairs to compare (you can sort by keys or values or their combination as needed).

Computes in O(n log n + c) time and O(n) space where n is the length of the map and c the capacity. The sort is stable.

Source

pub fn sort_unstable_keys(&mut self)
where K: Ord,

Sort the map’s key-value pairs by the default ordering of the keys, but may not preserve the order of equal elements.

See sort_unstable_by for details.

Source

pub fn sort_unstable_by<F>(&mut self, cmp: F)
where F: FnMut(&K, &V, &K, &V) -> Ordering,

Sort the map’s key-value pairs in place using the comparison function cmp, but may not preserve the order of equal elements.

The comparison function receives two key and value pairs to compare (you can sort by keys or values or their combination as needed).

Computes in O(n log n + c) time where n is the length of the map and c is the capacity. The sort is unstable.

Source

pub fn sort_by_cached_key<T, F>(&mut self, sort_key: F)
where T: Ord, F: FnMut(&K, &V) -> T,

Sort the map’s key-value pairs in place using a sort-key extraction function.

During sorting, the function is called at most once per entry, by using temporary storage to remember the results of its evaluation. The order of calls to the function is unspecified and may change between versions of indexmap or the standard library.

Computes in O(m n + n log n + c) time () and O(n) space, where the function is O(m), n is the length of the map, and c the capacity. The sort is stable.

Source

pub fn binary_search_keys(&self, x: &K) -> Result<usize, usize>
where K: Ord,

Search over a sorted map for a key.

Returns the position where that key is present, or the position where it can be inserted to maintain the sort. See slice::binary_search for more details.

Computes in O(log(n)) time, which is notably less scalable than looking the key up using get_index_of, but this can also position missing keys.

Source

pub fn binary_search_by<'a, F>(&'a self, f: F) -> Result<usize, usize>
where F: FnMut(&'a K, &'a V) -> Ordering,

Search over a sorted map with a comparator function.

Returns the position where that value is present, or the position where it can be inserted to maintain the sort. See slice::binary_search_by for more details.

Computes in O(log(n)) time.

Source

pub fn binary_search_by_key<'a, B, F>( &'a self, b: &B, f: F, ) -> Result<usize, usize>
where F: FnMut(&'a K, &'a V) -> B, B: Ord,

Search over a sorted map with an extraction function.

Returns the position where that value is present, or the position where it can be inserted to maintain the sort. See slice::binary_search_by_key for more details.

Computes in O(log(n)) time.

Source

pub fn partition_point<P>(&self, pred: P) -> usize
where P: FnMut(&K, &V) -> bool,

Returns the index of the partition point of a sorted map according to the given predicate (the index of the first element of the second partition).

See slice::partition_point for more details.

Computes in O(log(n)) time.

Source

pub fn reverse(&mut self)

Reverses the order of the map’s key-value pairs in place.

Computes in O(n) time and O(1) space.

Source

pub fn as_slice(&self) -> &Slice<K, V>

Returns a slice of all the key-value pairs in the map.

Computes in O(1) time.

Source

pub fn as_mut_slice(&mut self) -> &mut Slice<K, V>

Returns a mutable slice of all the key-value pairs in the map.

Computes in O(1) time.

Source

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.

Source

pub fn get_index_mut(&mut self, index: usize) -> Option<(&K, &mut V)>

Get a key-value pair by index

Valid indices are 0 <= index < self.len().

Computes in O(1) time.

Source

pub fn get_index_entry( &mut self, index: usize, ) -> Option<IndexedEntry<'_, K, V>>

Get an entry in the map by index for in-place manipulation.

Valid indices are 0 <= index < self.len().

Computes in O(1) time.

Source

pub fn get_range<R>(&self, range: R) -> Option<&Slice<K, V>>
where R: RangeBounds<usize>,

Returns a slice of key-value pairs in the given range of indices.

Valid indices are 0 <= index < self.len().

Computes in O(1) time.

Source

pub fn get_range_mut<R>(&mut self, range: R) -> Option<&mut Slice<K, V>>
where R: RangeBounds<usize>,

Returns a mutable slice of key-value pairs in the given range of indices.

Valid indices are 0 <= index < self.len().

Computes in O(1) time.

Source

pub fn first(&self) -> Option<(&K, &V)>

Get the first key-value pair

Computes in O(1) time.

Source

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.

Source

pub fn first_entry(&mut self) -> Option<IndexedEntry<'_, K, V>>

Get the first entry in the map for in-place manipulation.

Computes in O(1) time.

Source

pub fn last(&self) -> Option<(&K, &V)>

Get the last key-value pair

Computes in O(1) time.

Source

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.

Source

pub fn last_entry(&mut self) -> Option<IndexedEntry<'_, K, V>>

Get the last entry in the map for in-place manipulation.

Computes in O(1) time.

Source

pub fn swap_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::swap_remove, the pair is removed by swapping it with the last element of the map and popping it off. This perturbs the position of what used to be the last element!

Computes in O(1) time (average).

Source

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).

Source

pub fn move_index(&mut self, from: usize, to: usize)

Moves the position of a key-value pair from one index to another by shifting all other pairs in-between.

  • If from < to, the other pairs will shift down while the targeted pair moves up.
  • If from > to, the other pairs will shift up while the targeted pair moves down.

Panics if from or to are out of bounds.

Computes in O(n) time (average).

Source

pub fn swap_indices(&mut self, a: usize, b: usize)

Swaps the position of two key-value pairs in the map.

Panics if a or b are out of bounds.

Computes in O(1) time (average).

Trait Implementations§

Source§

impl<V> Clone for EntityIndexMap<V>
where V: Clone,

Source§

fn clone(&self) -> EntityIndexMap<V>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<V> Debug for EntityIndexMap<V>
where V: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<V> Default for EntityIndexMap<V>

Source§

fn default() -> EntityIndexMap<V>

Returns the “default value” for a type. Read more
Source§

impl<V> Deref for EntityIndexMap<V>

Source§

type Target = IndexMap<Entity, V, EntityHash>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<EntityIndexMap<V> as Deref>::Target

Dereferences the value.
Source§

impl<V> DerefMut for EntityIndexMap<V>

Source§

fn deref_mut(&mut self) -> &mut <EntityIndexMap<V> as Deref>::Target

Mutably dereferences the value.
Source§

impl<'de, V> Deserialize<'de> for EntityIndexMap<V>
where V: Deserialize<'de>,

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<EntityIndexMap<V>, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'a, V> Extend<(&'a Entity, &'a V)> for EntityIndexMap<V>
where V: Copy,

Source§

fn extend<T>(&mut self, iter: T)
where T: IntoIterator<Item = (&'a Entity, &'a V)>,

Extends a collection with the contents of an iterator. Read more
Source§

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)

🔬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<V> Extend<(Entity, V)> for EntityIndexMap<V>

Source§

fn extend<T>(&mut self, iter: T)
where T: IntoIterator<Item = (Entity, V)>,

Extends a collection with the contents of an iterator. Read more
Source§

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)

🔬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<V, const N: usize> From<[(Entity, V); N]> for EntityIndexMap<V>

Source§

fn from(value: [(Entity, V); N]) -> EntityIndexMap<V>

Converts to this type from the input type.
Source§

impl<V> FromIterator<(Entity, V)> for EntityIndexMap<V>

Source§

fn from_iter<I>(iterable: I) -> EntityIndexMap<V>
where I: IntoIterator<Item = (Entity, V)>,

Creates a value from an iterator. Read more
Source§

impl<V> FromReflect for EntityIndexMap<V>
where EntityIndexMap<V>: Any + Send + Sync, V: TypePath, IndexMap<Entity, V, EntityHash>: FromReflect + TypePath + MaybeTyped + RegisterForReflection,

Source§

fn from_reflect( reflect: &(dyn PartialReflect + 'static), ) -> Option<EntityIndexMap<V>>

Constructs a concrete instance of Self from a reflected value.
Source§

fn take_from_reflect( reflect: Box<dyn PartialReflect>, ) -> Result<Self, Box<dyn PartialReflect>>

Attempts to downcast the given value to Self using, constructing the value using from_reflect if that fails. Read more
Source§

impl<V> GetTypeRegistration for EntityIndexMap<V>
where EntityIndexMap<V>: Any + Send + Sync, V: TypePath, IndexMap<Entity, V, EntityHash>: FromReflect + TypePath + MaybeTyped + RegisterForReflection,

Source§

fn get_type_registration() -> TypeRegistration

Returns the default TypeRegistration for this type.
Source§

fn register_type_dependencies(registry: &mut TypeRegistry)

Registers other types needed by this type. Read more
Source§

impl<V, Q> Index<&Q> for EntityIndexMap<V>
where Q: EntityEquivalent + ?Sized,

Source§

type Output = V

The returned type after indexing.
Source§

fn index(&self, key: &Q) -> &V

Performs the indexing (container[index]) operation. Read more
Source§

impl<V> Index<(Bound<usize>, Bound<usize>)> for EntityIndexMap<V>

Source§

type Output = Slice<V>

The returned type after indexing.
Source§

fn index( &self, key: (Bound<usize>, Bound<usize>), ) -> &<EntityIndexMap<V> as Index<(Bound<usize>, Bound<usize>)>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<V> Index<Range<usize>> for EntityIndexMap<V>

Source§

type Output = Slice<V>

The returned type after indexing.
Source§

fn index( &self, key: Range<usize>, ) -> &<EntityIndexMap<V> as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<V> Index<RangeFrom<usize>> for EntityIndexMap<V>

Source§

type Output = Slice<V>

The returned type after indexing.
Source§

fn index( &self, key: RangeFrom<usize>, ) -> &<EntityIndexMap<V> as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<V> Index<RangeFull> for EntityIndexMap<V>

Source§

type Output = Slice<V>

The returned type after indexing.
Source§

fn index( &self, key: RangeFull, ) -> &<EntityIndexMap<V> as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<V> Index<RangeInclusive<usize>> for EntityIndexMap<V>

Source§

type Output = Slice<V>

The returned type after indexing.
Source§

fn index( &self, key: RangeInclusive<usize>, ) -> &<EntityIndexMap<V> as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<V> Index<RangeTo<usize>> for EntityIndexMap<V>

Source§

type Output = Slice<V>

The returned type after indexing.
Source§

fn index( &self, key: RangeTo<usize>, ) -> &<EntityIndexMap<V> as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<V> Index<RangeToInclusive<usize>> for EntityIndexMap<V>

Source§

type Output = Slice<V>

The returned type after indexing.
Source§

fn index( &self, key: RangeToInclusive<usize>, ) -> &<EntityIndexMap<V> as Index<RangeToInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<V> Index<usize> for EntityIndexMap<V>

Source§

type Output = V

The returned type after indexing.
Source§

fn index(&self, key: usize) -> &V

Performs the indexing (container[index]) operation. Read more
Source§

impl<V, Q> IndexMut<&Q> for EntityIndexMap<V>
where Q: EntityEquivalent + ?Sized,

Source§

fn index_mut(&mut self, key: &Q) -> &mut V

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<V> IndexMut<(Bound<usize>, Bound<usize>)> for EntityIndexMap<V>

Source§

fn index_mut( &mut self, key: (Bound<usize>, Bound<usize>), ) -> &mut <EntityIndexMap<V> as Index<(Bound<usize>, Bound<usize>)>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<V> IndexMut<Range<usize>> for EntityIndexMap<V>

Source§

fn index_mut( &mut self, key: Range<usize>, ) -> &mut <EntityIndexMap<V> as Index<Range<usize>>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<V> IndexMut<RangeFrom<usize>> for EntityIndexMap<V>

Source§

fn index_mut( &mut self, key: RangeFrom<usize>, ) -> &mut <EntityIndexMap<V> as Index<RangeFrom<usize>>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<V> IndexMut<RangeFull> for EntityIndexMap<V>

Source§

fn index_mut( &mut self, key: RangeFull, ) -> &mut <EntityIndexMap<V> as Index<RangeFull>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<V> IndexMut<RangeInclusive<usize>> for EntityIndexMap<V>

Source§

fn index_mut( &mut self, key: RangeInclusive<usize>, ) -> &mut <EntityIndexMap<V> as Index<RangeInclusive<usize>>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<V> IndexMut<RangeTo<usize>> for EntityIndexMap<V>

Source§

fn index_mut( &mut self, key: RangeTo<usize>, ) -> &mut <EntityIndexMap<V> as Index<RangeTo<usize>>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<V> IndexMut<RangeToInclusive<usize>> for EntityIndexMap<V>

Source§

fn index_mut( &mut self, key: RangeToInclusive<usize>, ) -> &mut <EntityIndexMap<V> as Index<RangeToInclusive<usize>>>::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<V> IndexMut<usize> for EntityIndexMap<V>

Source§

fn index_mut(&mut self, key: usize) -> &mut V

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<'a, V> IntoIterator for &'a EntityIndexMap<V>

Source§

type Item = (&'a Entity, &'a V)

The type of the elements being iterated over.
Source§

type IntoIter = Iter<'a, V>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <&'a EntityIndexMap<V> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<'a, V> IntoIterator for &'a mut EntityIndexMap<V>

Source§

type Item = (&'a Entity, &'a mut V)

The type of the elements being iterated over.
Source§

type IntoIter = IterMut<'a, V>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <&'a mut EntityIndexMap<V> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<V> IntoIterator for EntityIndexMap<V>

Source§

type Item = (Entity, V)

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<V>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <EntityIndexMap<V> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<V1, V2> PartialEq<EntityIndexMap<V2>> for EntityIndexMap<V1>
where V1: PartialEq<V2>,

Source§

fn eq(&self, other: &EntityIndexMap<V2>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<V1, V2, S2> PartialEq<IndexMap<Entity, V2, S2>> for EntityIndexMap<V1>
where V1: PartialEq<V2>, S2: BuildHasher,

Source§

fn eq(&self, other: &IndexMap<Entity, V2, S2>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<V> PartialReflect for EntityIndexMap<V>
where EntityIndexMap<V>: Any + Send + Sync, V: TypePath, IndexMap<Entity, V, EntityHash>: FromReflect + TypePath + MaybeTyped + RegisterForReflection,

Source§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

Returns the TypeInfo of the type represented by this value. Read more
Source§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

Tries to apply a reflected value to this value. Read more
Source§

fn reflect_kind(&self) -> ReflectKind

Returns a zero-sized enumeration of “kinds” of type. Read more
Source§

fn reflect_ref(&self) -> ReflectRef<'_>

Returns an immutable enumeration of “kinds” of type. Read more
Source§

fn reflect_mut(&mut self) -> ReflectMut<'_>

Returns a mutable enumeration of “kinds” of type. Read more
Source§

fn reflect_owned(self: Box<EntityIndexMap<V>>) -> ReflectOwned

Returns an owned enumeration of “kinds” of type. Read more
Source§

fn try_into_reflect( self: Box<EntityIndexMap<V>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

Attempts to cast this type to a boxed, fully-reflected value.
Source§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

Attempts to cast this type to a fully-reflected value.
Source§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

Attempts to cast this type to a mutable, fully-reflected value.
Source§

fn into_partial_reflect(self: Box<EntityIndexMap<V>>) -> Box<dyn PartialReflect>

Casts this type to a boxed, reflected value. Read more
Source§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

Casts this type to a reflected value. Read more
Source§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

Casts this type to a mutable, reflected value. Read more
Source§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

Returns a “partial equality” comparison result. Read more
Source§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

Attempts to clone Self using reflection. Read more
Source§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

Applies a reflected value to this value. Read more
Source§

fn clone_value(&self) -> Box<dyn PartialReflect>

👎Deprecated since 0.16.0: to clone reflected values, prefer using reflect_clone. To convert reflected values to dynamic ones, use to_dynamic.
Clones Self into its dynamic representation. Read more
Source§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

Converts this reflected value into its dynamic representation based on its kind. Read more
Source§

fn reflect_hash(&self) -> Option<u64>

Returns a hash of the value (which includes the type). Read more
Source§

fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Debug formatter for the value. Read more
Source§

fn is_dynamic(&self) -> bool

Indicates whether or not this type is a dynamic type. Read more
Source§

impl<V> Reflect for EntityIndexMap<V>
where EntityIndexMap<V>: Any + Send + Sync, V: TypePath, IndexMap<Entity, V, EntityHash>: FromReflect + TypePath + MaybeTyped + RegisterForReflection,

Source§

fn into_any(self: Box<EntityIndexMap<V>>) -> Box<dyn Any>

Returns the value as a Box<dyn Any>. Read more
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Returns the value as a &dyn Any. Read more
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Returns the value as a &mut dyn Any. Read more
Source§

fn into_reflect(self: Box<EntityIndexMap<V>>) -> Box<dyn Reflect>

Casts this type to a boxed, fully-reflected value.
Source§

fn as_reflect(&self) -> &(dyn Reflect + 'static)

Casts this type to a fully-reflected value.
Source§

fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)

Casts this type to a mutable, fully-reflected value.
Source§

fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>>

Performs a type-checked assignment of a reflected value to this value. Read more
Source§

impl<V> Serialize for EntityIndexMap<V>
where V: Serialize,

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<V> TupleStruct for EntityIndexMap<V>
where EntityIndexMap<V>: Any + Send + Sync, V: TypePath, IndexMap<Entity, V, EntityHash>: FromReflect + TypePath + MaybeTyped + RegisterForReflection,

Source§

fn field(&self, index: usize) -> Option<&(dyn PartialReflect + 'static)>

Returns a reference to the value of the field with index index as a &dyn Reflect.
Source§

fn field_mut( &mut self, index: usize, ) -> Option<&mut (dyn PartialReflect + 'static)>

Returns a mutable reference to the value of the field with index index as a &mut dyn Reflect.
Source§

fn field_len(&self) -> usize

Returns the number of fields in the tuple struct.
Source§

fn iter_fields(&self) -> TupleStructFieldIter<'_>

Returns an iterator over the values of the tuple struct’s fields.
Source§

fn to_dynamic_tuple_struct(&self) -> DynamicTupleStruct

Creates a new DynamicTupleStruct from this tuple struct.
Source§

fn clone_dynamic(&self) -> DynamicTupleStruct

👎Deprecated since 0.16.0: use to_dynamic_tuple_struct instead
Clones the struct into a DynamicTupleStruct.
Source§

fn get_represented_tuple_struct_info(&self) -> Option<&'static TupleStructInfo>

Will return None if TypeInfo is not available.
Source§

impl<V> TypePath for EntityIndexMap<V>
where EntityIndexMap<V>: Any + Send + Sync, V: TypePath,

Source§

fn type_path() -> &'static str

Returns the fully qualified path of the underlying type. Read more
Source§

fn short_type_path() -> &'static str

Returns a short, pretty-print enabled path to the type. Read more
Source§

fn type_ident() -> Option<&'static str>

Returns the name of the type, or None if it is anonymous. Read more
Source§

fn crate_name() -> Option<&'static str>

Returns the name of the crate the type is in, or None if it is anonymous. Read more
Source§

fn module_path() -> Option<&'static str>

Returns the path to the module the type is in, or None if it is anonymous. Read more
Source§

impl<V> Typed for EntityIndexMap<V>
where EntityIndexMap<V>: Any + Send + Sync, V: TypePath, IndexMap<Entity, V, EntityHash>: FromReflect + TypePath + MaybeTyped + RegisterForReflection,

Source§

fn type_info() -> &'static TypeInfo

Returns the compile-time info for the underlying type.
Source§

impl<V> Eq for EntityIndexMap<V>
where V: Eq,

Auto Trait Implementations§

§

impl<V> Freeze for EntityIndexMap<V>

§

impl<V> RefUnwindSafe for EntityIndexMap<V>
where V: RefUnwindSafe,

§

impl<V> Send for EntityIndexMap<V>
where V: Send,

§

impl<V> Sync for EntityIndexMap<V>
where V: Sync,

§

impl<V> Unpin for EntityIndexMap<V>
where V: Unpin,

§

impl<V> UnwindSafe for EntityIndexMap<V>
where V: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T, U> AsBindGroupShaderType<U> for T
where U: ShaderType, &'a T: for<'a> Into<U>,

Source§

fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U

Return the T ShaderType for self. When used in AsBindGroup derives, it is safe to assume that all images in self exist.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Converts Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Converts Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Converts &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Converts &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSend for T
where T: Any + Send,

Source§

fn into_any_send(self: Box<T>) -> Box<dyn Any + Send>

Converts Box<Trait> (where Trait: DowncastSend) to Box<dyn Any + Send>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> DynEq for T
where T: Any + Eq,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Casts the type to dyn Any.
Source§

fn dyn_eq(&self, other: &(dyn DynEq + 'static)) -> bool

This method tests for self and other values to be equal. Read more
Source§

impl<T> DynamicTypePath for T
where T: TypePath,

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromWorld for T
where T: Default,

Source§

fn from_world(_world: &mut World) -> T

Creates Self using default().

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> TypeData for T
where T: 'static + Send + Sync + Clone,

Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ConditionalSend for T
where T: Send,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> Settings for T
where T: 'static + Send + Sync,

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,