本文简要介绍rust语言中 core::lazy::OnceCell.take
的用法。
用法
pub fn take(&mut self) -> Option<T>
从此 OnceCell
中取出值,将其移回未初始化状态。
如果 OnceCell
尚未初始化,则无效并返回 None
。
通过需要可变引用来保证安全性。
例子
#![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);
相关用法
- Rust OnceCell.set用法及代码示例
- Rust OnceCell.into_inner用法及代码示例
- Rust OnceCell.get_or_init用法及代码示例
- Rust OnceCell.get_or_try_init用法及代码示例
- Rust OnceCell用法及代码示例
- Rust Once.call_once用法及代码示例
- Rust Once.call_once_force用法及代码示例
- Rust Once用法及代码示例
- Rust OnceState.is_poisoned用法及代码示例
- Rust Once.is_completed用法及代码示例
- Rust OsStr.to_ascii_uppercase用法及代码示例
- Rust Option.unwrap_or_default用法及代码示例
- Rust Octal用法及代码示例
- Rust Option.as_deref_mut用法及代码示例
- Rust Option.get_or_insert_with用法及代码示例
- Rust Option.iter_mut用法及代码示例
- Rust OsStr.make_ascii_lowercase用法及代码示例
- Rust OsString.clear用法及代码示例
- Rust OpenOptionsExt.custom_flags用法及代码示例
- Rust Option.or_else用法及代码示例
- Rust Option.unwrap_unchecked用法及代码示例
- Rust Option.get_or_insert用法及代码示例
- Rust OpenOptions.append用法及代码示例
- Rust Option.expect用法及代码示例
- Rust Ordering.then用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 core::lazy::OnceCell.take。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。