Entry

Enum Entry 

Source
pub enum Entry<'a, K, V, const N: usize> {
    Occupied(OccupiedEntry<'a, K, V, N>),
    Vacant(VacantEntry<'a, K, V, N>),
}
Expand description

A view into an entry in the map

Variants§

§

Occupied(OccupiedEntry<'a, K, V, N>)

The entry corresponding to the key K exists in the map

§

Vacant(VacantEntry<'a, K, V, N>)

The entry corresponding to the key K does not exist in the map

Implementations§

Source§

impl<'a, K, V, const N: usize> Entry<'a, K, V, N>
where K: Eq + Hash,

Source

pub fn or_insert(self, default: V) -> Result<&'a mut V, V>

Ensures a value is in the entry by inserting the default if empty, and returns a mutable reference to the value in the entry.

§Examples
use heapless::index_map::FnvIndexMap;

// A hash map with a capacity of 16 key-value pairs allocated on the stack
let mut book_reviews = FnvIndexMap::<_, _, 16>::new();
let result = book_reviews
    .entry("Adventures of Huckleberry Finn")
    .or_insert("My favorite book.");

assert_eq!(result, Ok(&mut "My favorite book."));
assert_eq!(
    book_reviews["Adventures of Huckleberry Finn"],
    "My favorite book."
);
Source

pub fn or_insert_with<F: FnOnce() -> V>( self, default: F, ) -> Result<&'a mut V, V>

Ensures a value is in the entry by inserting the result of the default function if empty, and returns a mutable reference to the value in the entry.

§Examples
use heapless::index_map::FnvIndexMap;

// A hash map with a capacity of 16 key-value pairs allocated on the stack
let mut book_reviews = FnvIndexMap::<_, _, 16>::new();
let s = "Masterpiece.".to_string();

book_reviews
    .entry("Grimms' Fairy Tales")
    .or_insert_with(|| s);

assert_eq!(
    book_reviews["Grimms' Fairy Tales"],
    "Masterpiece.".to_string()
);
Source

pub fn or_insert_with_key<F: FnOnce(&K) -> V>( self, default: F, ) -> Result<&'a mut V, V>

Ensures a value is in the entry by inserting, if empty, the result of the default function. This method allows for generating key-derived values for insertion by providing the default function a reference to the key that was moved during the .entry(key) method call.

The reference to the moved key is provided so that cloning or copying the key is unnecessary, unlike with .or_insert_with(|| ... ).

§Examples
use heapless::index_map::FnvIndexMap;

// A hash map with a capacity of 16 key-value pairs allocated on the stack
let mut book_reviews = FnvIndexMap::<_, _, 16>::new();

book_reviews
    .entry("Pride and Prejudice")
    .or_insert_with_key(|key| key.chars().count());

assert_eq!(book_reviews["Pride and Prejudice"], 19);
Source

pub fn key(&self) -> &K

Returns a reference to this entry’s key.

§Examples
use heapless::index_map::FnvIndexMap;

// A hash map with a capacity of 16 key-value pairs allocated on the stack
let mut book_reviews = FnvIndexMap::<&str, &str, 16>::new();
assert_eq!(
    book_reviews
        .entry("The Adventures of Sherlock Holmes")
        .key(),
    &"The Adventures of Sherlock Holmes"
);
Source

pub fn and_modify<F>(self, f: F) -> Self
where F: FnOnce(&mut V),

Provides in-place mutable access to an occupied entry before any potential inserts into the map.

§Examples
use heapless::index_map::FnvIndexMap;

// A hash map with a capacity of 16 key-value pairs allocated on the stack
let mut book_reviews = FnvIndexMap::<_, _, 16>::new();

book_reviews
    .entry("Grimms' Fairy Tales")
    .and_modify(|e| *e = "Masterpiece.")
    .or_insert("Very enjoyable.");
assert_eq!(book_reviews["Grimms' Fairy Tales"], "Very enjoyable.");
Source§

impl<'a, K, V, const N: usize> Entry<'a, K, V, N>
where K: Eq + Hash, V: Default,

Source

pub fn or_default(self) -> Result<&'a mut V, V>

Ensures a value is in the entry by inserting the default value if empty, and returns a mutable reference to the value in the entry.

§Examples
use heapless::index_map::FnvIndexMap;

let mut book_reviews = FnvIndexMap::<&str, Option<&str>, 16>::new();

book_reviews.entry("Pride and Prejudice").or_default();

assert_eq!(book_reviews["Pride and Prejudice"], None);

Auto Trait Implementations§

§

impl<'a, K, V, const N: usize> Freeze for Entry<'a, K, V, N>
where K: Freeze,

§

impl<'a, K, V, const N: usize> RefUnwindSafe for Entry<'a, K, V, N>

§

impl<'a, K, V, const N: usize> Send for Entry<'a, K, V, N>
where K: Send, V: Send,

§

impl<'a, K, V, const N: usize> Sync for Entry<'a, K, V, N>
where K: Sync, V: Sync,

§

impl<'a, K, V, const N: usize> Unpin for Entry<'a, K, V, N>
where K: Unpin,

§

impl<'a, K, V, const N: usize> !UnwindSafe for Entry<'a, K, V, N>

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