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


Rust OnceState.is_poisoned用法及代码示例


本文简要介绍rust语言中 std::sync::OnceState.is_poisoned 的用法。

用法

pub fn is_poisoned(&self) -> bool

如果在调用传递给 Once::call_once_force() 的闭包之前关联的 Once 已中毒,则返回 true

例子

中毒的 Once

use std::sync::Once;
use std::thread;

static INIT: Once = Once::new();

// poison the once
let handle = thread::spawn(|| {
    INIT.call_once(|| panic!());
});
assert!(handle.join().is_err());

INIT.call_once_force(|state| {
    assert!(state.is_poisoned());
});

未中毒的 Once

use std::sync::Once;

static INIT: Once = Once::new();

INIT.call_once_force(|state| {
    assert!(!state.is_poisoned());
});

相关用法


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