Struct std::collections::hash_map::OccupiedEntry

1.0.0 · source ·
pub struct OccupiedEntry<'a, K: 'a, V: 'a> { /* private fields */ }
Expand description

HashMap 中已占用条目的视图。 它是 Entry 枚举的一部分。

Implementations§

source§

impl<'a, K, V> OccupiedEntry<'a, K, V>

1.10.0 · source

pub fn key(&self) -> &K

获取条目中键的引用。

Examples
use std::collections::HashMap;

let mut map: HashMap<&str, u32> = HashMap::new();
map.entry("poneyland").or_insert(12);
assert_eq!(map.entry("poneyland").key(), &"poneyland");
Run
1.12.0 · source

pub fn remove_entry(self) -> (K, V)

从 map 获取键和值的所有权。

Examples
use std::collections::HashMap;
use std::collections::hash_map::Entry;

let mut map: HashMap<&str, u32> = HashMap::new();
map.entry("poneyland").or_insert(12);

if let Entry::Occupied(o) = map.entry("poneyland") {
    // 我们从 map 中删除了这个条目。
    o.remove_entry();
}

assert_eq!(map.contains_key("poneyland"), false);
Run
source

pub fn get(&self) -> &V

获取条目中值的引用。

Examples
use std::collections::HashMap;
use std::collections::hash_map::Entry;

let mut map: HashMap<&str, u32> = HashMap::new();
map.entry("poneyland").or_insert(12);

if let Entry::Occupied(o) = map.entry("poneyland") {
    assert_eq!(o.get(), &12);
}
Run
source

pub fn get_mut(&mut self) -> &mut V

获取条目中的值的可变引用。

如果需要对 OccupiedEntry 的引用,而这可能会使 Entry 值的破坏失效,请参见 into_mut

Examples
use std::collections::HashMap;
use std::collections::hash_map::Entry;

let mut map: HashMap<&str, u32> = HashMap::new();
map.entry("poneyland").or_insert(12);

assert_eq!(map["poneyland"], 12);
if let Entry::Occupied(mut o) = map.entry("poneyland") {
    *o.get_mut() += 10;
    assert_eq!(*o.get(), 22);

    // 我们可以多次使用同一个 Entry。
    *o.get_mut() += 2;
}

assert_eq!(map["poneyland"], 24);
Run
source

pub fn into_mut(self) -> &'a mut V

OccupiedEntry 转换为条目中带有生命周期绑定到 map 本身的值的变量引用。

如果需要多次引用 OccupiedEntry,请参见 get_mut

Examples
use std::collections::HashMap;
use std::collections::hash_map::Entry;

let mut map: HashMap<&str, u32> = HashMap::new();
map.entry("poneyland").or_insert(12);

assert_eq!(map["poneyland"], 12);
if let Entry::Occupied(o) = map.entry("poneyland") {
    *o.into_mut() += 10;
}

assert_eq!(map["poneyland"], 22);
Run
source

pub fn insert(&mut self, value: V) -> V

设置条目的值,并返回条目的旧值。

Examples
use std::collections::HashMap;
use std::collections::hash_map::Entry;

let mut map: HashMap<&str, u32> = HashMap::new();
map.entry("poneyland").or_insert(12);

if let Entry::Occupied(mut o) = map.entry("poneyland") {
    assert_eq!(o.insert(15), 12);
}

assert_eq!(map["poneyland"], 15);
Run
source

pub fn remove(self) -> V

从条目中取出值,然后将其返回。

Examples
use std::collections::HashMap;
use std::collections::hash_map::Entry;

let mut map: HashMap<&str, u32> = HashMap::new();
map.entry("poneyland").or_insert(12);

if let Entry::Occupied(o) = map.entry("poneyland") {
    assert_eq!(o.remove(), 12);
}

assert_eq!(map.contains_key("poneyland"), false);
Run
source

pub fn replace_entry(self, value: V) -> (K, V)

🔬This is a nightly-only experimental API. (map_entry_replace #44286)

替换条目,返回旧的键和值。 哈希 map 中的新键将是用于创建此条目的键。

Examples
#![feature(map_entry_replace)]
use std::collections::hash_map::{Entry, HashMap};
use std::rc::Rc;

let mut map: HashMap<Rc<String>, u32> = HashMap::new();
map.insert(Rc::new("Stringthing".to_string()), 15);

let my_key = Rc::new("Stringthing".to_string());

if let Entry::Occupied(entry) = map.entry(my_key) {
    // 同时用我们其他键的句柄代替键。
    let (old_key, old_value): (Rc<String>, u32) = entry.replace_entry(16);
}
Run
source

pub fn replace_key(self) -> K

🔬This is a nightly-only experimental API. (map_entry_replace #44286)

用用于创建此条目的键替换哈希 map 中的键。

Examples
#![feature(map_entry_replace)]
use std::collections::hash_map::{Entry, HashMap};
use std::rc::Rc;

let mut map: HashMap<Rc<String>, u32> = HashMap::new();
let known_strings: Vec<Rc<String>> = Vec::new();

// 初始化已知的字符串,运行程序等

reclaim_memory(&mut map, &known_strings);

fn reclaim_memory(map: &mut HashMap<Rc<String>, u32>, known_strings: &[Rc<String>] ) {
    for s in known_strings {
        if let Entry::Occupied(entry) = map.entry(Rc::clone(s)) {
            // 将条目的键替换为我们在 `known_strings` 中的版本。
            entry.replace_key();
        }
    }
}
Run

Trait Implementations§

1.12.0 · source§

impl<K: Debug, V: Debug> Debug for OccupiedEntry<'_, K, V>

source§

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

使用给定的格式化程序格式化该值。 Read more

Auto Trait Implementations§

§

impl<'a, K, V> RefUnwindSafe for OccupiedEntry<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

§

impl<'a, K, V> Send for OccupiedEntry<'a, K, V>where K: Send, V: Send,

§

impl<'a, K, V> Sync for OccupiedEntry<'a, K, V>where K: Sync, V: Sync,

§

impl<'a, K, V> Unpin for OccupiedEntry<'a, K, V>where K: Unpin,

§

impl<'a, K, V> !UnwindSafe for OccupiedEntry<'a, K, V>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。