Skip to main content

Entry

Enum Entry 

Source
pub enum Entry<'a, K, V, S, A: Allocator, P: TreePolicy<K = K, V = V, S = S>>
where K: Ord,
{ Occupied(OccupiedEntry<'a, K, V, S, A, P>), Vacant(VacantEntry<'a, K, V, S, A, P>), }
Expand description

A view into a single entry in a tree, which may either be vacant or occupied.

This enum is constructed from the AugmentedRBTreeInt::entry method on AugmentedRBTree.

Variants§

§

Occupied(OccupiedEntry<'a, K, V, S, A, P>)

An occupied entry.

§

Vacant(VacantEntry<'a, K, V, S, A, P>)

A vacant entry.

Implementations§

Source§

impl<'a, K, V, S, A: Allocator, P: TreePolicy<K = K, V = V, S = S>> Entry<'a, K, V, S, A, P>
where K: Ord,

Source

pub fn or_insert(self, default: V) -> &'a mut 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
let mut tree = AugmentedRBTree::<&str, u32, SubtreeSize>::new();
tree.entry("hello").or_insert(3);
assert_eq!(tree.get(&"hello"), Some(&3));

*tree.entry("hello").or_insert(10) += 2;
assert_eq!(tree.get(&"hello"), Some(&5));
Source

pub fn or_insert_with(self, default: impl FnOnce() -> V) -> &'a mut 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
let mut tree = AugmentedRBTree::<&str, Vec<i32>, SubtreeSize>::new();
tree.entry("hello").or_insert_with(Vec::new).push(1);
assert_eq!(tree.get(&"hello"), Some(&vec![1]));
Source

pub fn or_default(self) -> &'a mut V
where V: Default,

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
let mut tree = AugmentedRBTree::<&str, u32, SubtreeSize>::new();
tree.entry("hello").or_default();
assert_eq!(tree.get(&"hello"), Some(&0));
Source

pub fn key(&self) -> &K

Returns a reference to this entry’s key.

§Examples
let mut tree = AugmentedRBTree::<&str, u32, Unit>::new();
assert_eq!(tree.entry("hello").key(), &"hello");
Source

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

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

§Examples
let mut tree = AugmentedRBTree::<&str, u32, Unit>::new();
tree.entry("hello").and_modify(|e| *e += 1).or_insert(42);
assert_eq!(tree.get(&"hello"), Some(&42));

tree.entry("hello").and_modify(|e| *e += 1).or_insert(42);
assert_eq!(tree.get(&"hello"), Some(&43));

Trait Implementations§

Source§

impl<'a, K, V: Debug, S: Debug, A: Debug + Allocator, P: Debug + TreePolicy<K = K, V = V, S = S>> Debug for Entry<'a, K, V, S, A, P>
where K: Ord + Debug,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, K, V, S, A, P> !Send for Entry<'a, K, V, S, A, P>

§

impl<'a, K, V, S, A, P> !Sync for Entry<'a, K, V, S, A, P>

§

impl<'a, K, V, S, A, P> !UnwindSafe for Entry<'a, K, V, S, A, P>

§

impl<'a, K, V, S, A, P> Freeze for Entry<'a, K, V, S, A, P>
where K: Freeze,

§

impl<'a, K, V, S, A, P> RefUnwindSafe for Entry<'a, K, V, S, A, P>

§

impl<'a, K, V, S, A, P> Unpin for Entry<'a, K, V, S, A, P>
where K: Unpin,

§

impl<'a, K, V, S, A, P> UnsafeUnpin for Entry<'a, K, V, S, A, P>
where K: UnsafeUnpin,

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.