pub enum Entry<'a, T, A = Global>{
Occupied(OccupiedEntry<'a, T, A>),
Vacant(VacantEntry<'a, T, A>),
}
🔬This is a nightly-only experimental API. (
btree_set_entry
#133549)Expand description
A view into a single entry in a set, which may either be vacant or occupied.
This enum
is constructed from the entry
method on BTreeSet
.
§Examples
#![feature(btree_set_entry)]
use std::collections::btree_set::BTreeSet;
let mut set = BTreeSet::new();
set.extend(["a", "b", "c"]);
assert_eq!(set.len(), 3);
// Existing value (insert)
let entry = set.entry("a");
let _raw_o = entry.insert();
assert_eq!(set.len(), 3);
// Nonexistent value (insert)
set.entry("d").insert();
// Existing value (or_insert)
set.entry("b").or_insert();
// Nonexistent value (or_insert)
set.entry("e").or_insert();
println!("Our BTreeSet: {:?}", set);
assert!(set.iter().eq(&["a", "b", "c", "d", "e"]));
Variants§
Occupied(OccupiedEntry<'a, T, A>)
🔬This is a nightly-only experimental API. (
btree_set_entry
#133549)An occupied entry.
§Examples
Vacant(VacantEntry<'a, T, A>)
🔬This is a nightly-only experimental API. (
btree_set_entry
#133549)A vacant entry.
§Examples
Implementations§
Source§impl<'a, T, A> Entry<'a, T, A>
impl<'a, T, A> Entry<'a, T, A>
Sourcepub fn insert(self) -> OccupiedEntry<'a, T, A>
🔬This is a nightly-only experimental API. (btree_set_entry
#133549)
pub fn insert(self) -> OccupiedEntry<'a, T, A>
btree_set_entry
#133549)Sets the value of the entry, and returns an OccupiedEntry
.
§Examples
Sourcepub fn or_insert(self)
🔬This is a nightly-only experimental API. (btree_set_entry
#133549)
pub fn or_insert(self)
btree_set_entry
#133549)Ensures a value is in the entry by inserting if it was vacant.
§Examples
Trait Implementations§
Auto Trait Implementations§
impl<'a, T, A> Freeze for Entry<'a, T, A>
impl<'a, T, A> RefUnwindSafe for Entry<'a, T, A>where
A: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T, A> Send for Entry<'a, T, A>
impl<'a, T, A> Sync for Entry<'a, T, A>
impl<'a, T, A> Unpin for Entry<'a, T, A>
impl<'a, T, A = Global> !UnwindSafe for Entry<'a, T, A>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more