Type Definition std::sync::LockResult
1.0.0 · source · pub type LockResult<Guard> = Result<Guard, PoisonError<Guard>>;
Expand description
一种类型别名,用于可能导致中毒的锁定方法。
此结果的 Ok
变体表示该原语没有中毒,并且其中包含 Guard
。
Err
变体表示该原语已中毒。
请注意,Err
变体还带有关联的守卫,可以通过 into_inner
方法获取它。