pub struct OnceState { /* private fields */ }
Expand description
状态产生于 Once::call_once_force ()
的闭包参数。
该状态可用于查询 Once
的中毒状态。
Implementations§
source§impl OnceState
impl OnceState
sourcepub fn is_poisoned(&self) -> bool
pub fn is_poisoned(&self) -> bool
如果关联的 Once
在调用传递给 Once::call_once_force()
的闭包之前中毒,则返回 true
。
Examples
中毒的 Once
:
use std::sync::Once;
use std::thread;
static INIT: Once = Once::new();
// 中毒一次
let handle = thread::spawn(|| {
INIT.call_once(|| panic!());
});
assert!(handle.join().is_err());
INIT.call_once_force(|state| {
assert!(state.is_poisoned());
});
Run无毒的 Once
:
use std::sync::Once;
static INIT: Once = Once::new();
INIT.call_once_force(|state| {
assert!(!state.is_poisoned());
});
Run