Type Definition std::sync::TryLockResult
1.0.0 · source · pub type TryLockResult<Guard> = Result<Guard, TryLockError<Guard>>;
Expand description
一种非别名锁定方法结果的类型别名。
有关更多信息,请参见 LockResult
。
TryLockResult
不一定持有 Err
类型的相关保护,因为可能由于其他原因没有获得锁。