Struct fixed_queue::LinearMap[][src]

pub struct LinearMap<K, V, const N: usize> { /* fields omitted */ }

Implementations

impl<K, V, const N: usize> LinearMap<K, V, N>[src]

pub const fn new() -> Self[src]

impl<K: PartialEq, V, const N: usize> LinearMap<K, V, N>[src]

pub fn get(&self, key: &K) -> Option<&V>[src]

pub fn get_mut(&mut self, key: &K) -> Option<&mut V>[src]

pub fn contains_key(&self, key: &K) -> bool[src]

pub fn insert(&mut self, key: K, value: V) -> Option<V>[src]

pub fn remove(&mut self, key: &K) -> Option<V>[src]

Trait Implementations

impl<K, V, const N: usize> AsMut<[(K, V)]> for LinearMap<K, V, N>[src]

impl<K, V, const N: usize> AsRef<[(K, V)]> for LinearMap<K, V, N>[src]

impl<K, V, const N: usize> Borrow<[(K, V)]> for LinearMap<K, V, N>[src]

impl<K, V, const N: usize> BorrowMut<[(K, V)]> for LinearMap<K, V, N>[src]

impl<K, V, const N: usize> Deref for LinearMap<K, V, N>[src]

type Target = [(K, V)]

The resulting type after dereferencing.

impl<K, V, const N: usize> DerefMut for LinearMap<K, V, N>[src]

Auto Trait Implementations

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

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

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

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.