pub struct ArrayMap<K, V, const N: usize> {
    pub keys: [K; N],
    pub vals: [V; N],
}
Expand description

An array wrapper representing a fixed-size map.

Fields§

§keys: [K; N]

Keys, corresponding 1:1 with vals.

§vals: [V; N]

Values, corresponding 1:1 with keys.

Trait Implementations§

source§

impl<K: Clone, V: Clone, const N: usize> Clone for ArrayMap<K, V, N>

source§

fn clone(&self) -> ArrayMap<K, V, N>

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<K, V, const N: usize> Collection for ArrayMap<K, V, N>

§

type Item = V

Type of the items of the collection.
source§

impl<K, V, const N: usize> CollectionMut for ArrayMap<K, V, N>

§

type ItemMut<'a> = &'a mut <ArrayMap<K, V, N> as Collection>::Item where Self: 'a

Type of mutable references to items of the collection.
source§

fn upcast_item_mut<'short, 'long: 'short>( r: Self::ItemMut<'long> ) -> Self::ItemMut<'short>
where Self: 'long,

Changes an item mutable reference into a shorter lived mutable reference. Read more
source§

impl<K, V, const N: usize> CollectionRef for ArrayMap<K, V, N>

§

type ItemRef<'a> = &'a <ArrayMap<K, V, N> as Collection>::Item where Self: 'a

Type of references to items of the collection.
source§

fn upcast_item_ref<'short, 'long: 'short>( r: Self::ItemRef<'long> ) -> Self::ItemRef<'short>
where Self: 'long,

Changes an item reference into a shorter lived reference. Read more
source§

impl<K, V, const N: usize> From<[(K, V); N]> for ArrayMap<K, V, N>

source§

fn from(value: [(K, V); N]) -> Self

Converts to this type from the input type.
source§

impl<'a, Q, K, V, const N: usize> Get<&'a Q> for ArrayMap<K, V, N>
where K: Borrow<Q>, Q: Eq + ?Sized,

source§

fn get(&self, key: &'a Q) -> Option<Self::ItemRef<'_>>

Returns a reference to the item stored behind the given key (if any).
§

fn contains(&self, key: T) -> bool

Checks if the collection contains an item behind the given key.
source§

impl<'a, Q, K, V, const N: usize> GetKeyValue<&'a Q> for ArrayMap<K, V, N>
where K: Borrow<Q>, Q: Eq + ?Sized,

source§

fn get_key_value( &self, key: &'a Q ) -> Option<(Self::KeyRef<'_>, Self::ItemRef<'_>)>

Returns the key-value pair matching the given key.
source§

impl<'a, Q, K, V, const N: usize> GetKeyValueMut<&'a Q> for ArrayMap<K, V, N>
where K: Borrow<Q>, Q: Eq + ?Sized,

source§

fn get_key_value_mut( &mut self, key: &'a Q ) -> Option<(Self::KeyRef<'_>, Self::ItemMut<'_>)>

Returns the key-value pair matching the given key, with a mutable reference to the value.
source§

impl<'a, Q, K, V, const N: usize> GetMut<&'a Q> for ArrayMap<K, V, N>
where K: Borrow<Q>, Q: Eq + ?Sized,

source§

fn get_mut(&mut self, key: &'a Q) -> Option<Self::ItemMut<'_>>

Returns a mutable reference to the item stored behind the given key (if any).
source§

impl<K: Hash, V: Hash, const N: usize> Hash for ArrayMap<K, V, N>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<K, V, const N: usize> IntoIterator for ArrayMap<K, V, N>

§

type Item = (K, V)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<K, N>, IntoIter<V, N>>

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

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<K, V, const N: usize> Iter for ArrayMap<K, V, N>

§

type Iter<'a> = Iter<'a, V> where Self: 'a

Iterator type.
source§

fn iter(&self) -> Self::Iter<'_>

Create an iterator over the items of the collection.
source§

impl<K, V, const N: usize> Keyed for ArrayMap<K, V, N>

§

type Key = K

Type of the keys indexing each item of the collection.
source§

impl<K, V, const N: usize> KeyedRef for ArrayMap<K, V, N>

§

type KeyRef<'a> = &'a <ArrayMap<K, V, N> as Keyed>::Key where Self: 'a

Type of references to keys of the collection.
source§

fn upcast_key_ref<'short, 'long: 'short>( r: Self::KeyRef<'long> ) -> Self::KeyRef<'short>
where Self: 'long,

Changes a key reference into a shorter lived reference. Read more
source§

impl<K, V, const N: usize> Len for ArrayMap<K, V, N>

source§

fn len(&self) -> usize

Returns the number of elements in the collection.
§

fn is_empty(&self) -> bool

Checks if the collection is empty.
source§

impl<K, V, const N: usize> MapIter for ArrayMap<K, V, N>

§

type Iter<'a> = Zip<Iter<'a, K>, Iter<'a, V>> where Self: 'a

source§

fn iter(&self) -> Self::Iter<'_>

source§

impl<K, V, const N: usize> MapIterMut for ArrayMap<K, V, N>

§

type IterMut<'a> = Zip<Iter<'a, K>, IterMut<'a, V>> where Self: 'a

source§

fn iter_mut(&mut self) -> Self::IterMut<'_>

source§

impl<K, OldVal, const N: usize> MapMapValues<OldVal> for ArrayMap<K, OldVal, N>

§

type MapValue<NewVal> = ArrayMap<K, NewVal, N>

Output type, should be Self but with OldVal replaced with NewVal.
source§

fn map_values<NewVal, MapFn>(self, map_fn: MapFn) -> Self::MapValue<NewVal>
where MapFn: FnMut(OldVal) -> NewVal,

Map the values into using the map_fn.
source§

impl<K: Ord, V: Ord, const N: usize> Ord for ArrayMap<K, V, N>

source§

fn cmp(&self, other: &ArrayMap<K, V, N>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<K: PartialEq, V: PartialEq, const N: usize> PartialEq for ArrayMap<K, V, N>

source§

fn eq(&self, other: &ArrayMap<K, V, N>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<K: PartialOrd, V: PartialOrd, const N: usize> PartialOrd for ArrayMap<K, V, N>

source§

fn partial_cmp(&self, other: &ArrayMap<K, V, N>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<K, V, const N: usize> SimpleCollectionRef for ArrayMap<K, V, N>

source§

fn into_ref<'r>(r: Self::ItemRef<'r>) -> &'r Self::Item
where Self: 'r,

source§

impl<K, V, const N: usize> SimpleKeyedRef for ArrayMap<K, V, N>

source§

fn into_ref<'r>(r: Self::KeyRef<'r>) -> &'r Self::Key
where Self: 'r,

source§

impl<K: Copy, V: Copy, const N: usize> Copy for ArrayMap<K, V, N>

source§

impl<K: Eq, V: Eq, const N: usize> Eq for ArrayMap<K, V, N>

source§

impl<K, V, const N: usize> StructuralPartialEq for ArrayMap<K, V, N>

Auto Trait Implementations§

§

impl<K, V, const N: usize> Freeze for ArrayMap<K, V, N>
where K: Freeze, V: Freeze,

§

impl<K, V, const N: usize> RefUnwindSafe for ArrayMap<K, V, N>

§

impl<K, V, const N: usize> Send for ArrayMap<K, V, N>
where K: Send, V: Send,

§

impl<K, V, const N: usize> Sync for ArrayMap<K, V, N>
where K: Sync, V: Sync,

§

impl<K, V, const N: usize> Unpin for ArrayMap<K, V, N>
where K: Unpin, V: Unpin,

§

impl<K, V, const N: usize> UnwindSafe for ArrayMap<K, V, N>
where K: UnwindSafe, 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> 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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

§

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>,

§

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>,

§

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

impl<K, V, C> Map<K, V> for C
where C: Keyed<Key = K, Item = V> + Len + for<'a> Get<&'a K> + for<'a> GetKeyValue<&'a K>,

§

impl<T, C> Set<T> for C
where C: Collection<Item = T> + Len + for<'a> Get<&'a T>,