Struct fixed_queue::LinearMap [−][src]
Implementations
impl<K, V, const N: usize> LinearMap<K, V, N>[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: PartialEq, V, const N: usize> Deref for LinearMap<K, V, N>[src]
impl<K: PartialEq, 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,
K: Send,
V: Send,
impl<K, V, const N: usize> Sync for LinearMap<K, V, N> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<K, V, const N: usize> Unpin for LinearMap<K, V, N> where
K: Unpin,
V: Unpin,
K: Unpin,
V: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,