Struct std::lazy::OnceCell[][src]

pub struct OnceCell<T> { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (once_cell #74465)
Expand description

一个单元只能写入一次。

RefCell 不同,OnceCell 仅为其值提供共享的 &T 引用。 与 Cell 不同,OnceCell 不需要复制或替换值即可访问它。

Examples

#![feature(once_cell)]

use std::lazy::OnceCell;

let cell = OnceCell::new();
assert!(cell.get().is_none());

let value: &String = cell.get_or_init(|| {
    "Hello, World!".to_string()
});
assert_eq!(value, "Hello, World!");
assert!(cell.get().is_some());
Run

Implementations

🔬 This is a nightly-only experimental API. (once_cell #74465)

创建一个新的空 cell。

🔬 This is a nightly-only experimental API. (once_cell #74465)

获取对基础值的引用。

如果 cell 为空,则返回 None

🔬 This is a nightly-only experimental API. (once_cell #74465)

获取基础值的可变引用。

如果 cell 为空,则返回 None

🔬 This is a nightly-only experimental API. (once_cell #74465)

将 cell 的内容设置为 value

Errors

如果 cell 为空,则此方法返回 Ok(()); 如果 cell 已满,则返回 Err(value)

Examples

#![feature(once_cell)]

use std::lazy::OnceCell;

let cell = OnceCell::new();
assert!(cell.get().is_none());

assert_eq!(cell.set(92), Ok(()));
assert_eq!(cell.set(62), Err(62));

assert!(cell.get().is_some());
Run
🔬 This is a nightly-only experimental API. (once_cell #74465)

获取 cell 的内容,如果 cell 为空,则使用 f 对其进行初始化。

Panics

如果 f panics,则 panic 会传播给调用者,并且单元仍保持未初始化状态。

重新从 f 初始化 cell 是错误的。这样做会导致 panic。

Examples

#![feature(once_cell)]

use std::lazy::OnceCell;

let cell = OnceCell::new();
let value = cell.get_or_init(|| 92);
assert_eq!(value, &92);
let value = cell.get_or_init(|| unreachable!());
assert_eq!(value, &92);
Run
🔬 This is a nightly-only experimental API. (once_cell #74465)

获取 cell 的内容,如果 cell 为空,则使用 f 对其进行初始化。 如果单元为空并且 f 失败,则返回错误。

Panics

如果 f panics,则 panic 会传播给调用者,并且单元仍保持未初始化状态。

重新从 f 初始化 cell 是错误的。这样做会导致 panic。

Examples

#![feature(once_cell)]

use std::lazy::OnceCell;

let cell = OnceCell::new();
assert_eq!(cell.get_or_try_init(|| Err(())), Err(()));
assert!(cell.get().is_none());
let value = cell.get_or_try_init(|| -> Result<i32, ()> {
    Ok(92)
});
assert_eq!(value, Ok(&92));
assert_eq!(cell.get(), Some(&92))
Run
🔬 This is a nightly-only experimental API. (once_cell #74465)

消费 cell,返回包装后的值。

如果 cell 为空,则返回 None

Examples

#![feature(once_cell)]

use std::lazy::OnceCell;

let cell: OnceCell<String> = OnceCell::new();
assert_eq!(cell.into_inner(), None);

let cell = OnceCell::new();
cell.set("hello".to_string()).unwrap();
assert_eq!(cell.into_inner(), Some("hello".to_string()));
Run
🔬 This is a nightly-only experimental API. (once_cell #74465)

OnceCell 中取出值,将其移回未初始化状态。

无效,如果尚未初始化 OnceCell,则返回 None

通过要求可变引用来保证安全。

Examples

#![feature(once_cell)]

use std::lazy::OnceCell;

let mut cell: OnceCell<String> = OnceCell::new();
assert_eq!(cell.take(), None);

let mut cell = OnceCell::new();
cell.set("hello".to_string()).unwrap();
assert_eq!(cell.take(), Some("hello".to_string()));
assert_eq!(cell.get(), None);
Run

Trait Implementations

返回值的副本。 Read more

source 执行复制分配。 Read more

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

返回类型的 “default value”。 Read more

执行转换。

此方法测试 selfother 值是否相等,并由 == 使用。 Read more

此方法测试 !=

Auto Trait Implementations

Blanket Implementations

获取 selfTypeIdRead more

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

从拥有的值中借用。 Read more

执行转换。

执行转换。

执行转换。

获得所有权后的结果类型。

通常通过克隆从借用数据中创建拥有的数据。 Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)

recently added

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more

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

执行转换。

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

执行转换。