当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust SyncOnceCell用法及代码示例


本文简要介绍rust语言中 Struct std::lazy::SyncOnceCell 的用法。

用法

pub struct SyncOnceCell<T> { /* fields omitted */ }

只能写入一次的同步原语。

这种类型是线程安全的 OnceCell

例子

#![feature(once_cell)]

use std::lazy::SyncOnceCell;

static CELL: SyncOnceCell<String> = SyncOnceCell::new();
assert!(CELL.get().is_none());

std::thread::spawn(|| {
    let value: &String = CELL.get_or_init(|| {
        "Hello, World!".to_string()
    });
    assert_eq!(value, "Hello, World!");
}).join().unwrap();

let value: Option<&String> = CELL.get();
assert!(value.is_some());
assert_eq!(value.unwrap().as_str(), "Hello, World!");

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Struct std::lazy::SyncOnceCell。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。