Enum std::sync::TryLockError1.0.0[][src]

pub enum TryLockError<T> {
    Poisoned(PoisonError<T>),
    WouldBlock,
}
Expand description

枚举可能与 TryLockResult 相关的错误,这些错误可能是从 Mutex 上的 try_lock 方法或 RwLock 上的 try_readtry_write 方法获取锁时发生的。

Variants

Poisoned(PoisonError<T>)

由于另一个线程在持有锁时失败,因此无法获取该锁。

WouldBlock

此时无法获取该锁,因为否则该操作将阻塞。

Trait Implementations

使用给定的格式化程序格式化该值。 Read more

使用给定的格式化程序格式化该值。 Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

此错误的下级来源 (如果有)。 Read more

🔬 This is a nightly-only experimental API. (backtrace #53487)

返回发生错误的栈回溯 (如果有)。 Read more

执行转换。

Auto Trait Implementations

Blanket Implementations

获取 selfTypeIdRead more

从拥有的值中一成不变地借用。 Read more

从拥有的值中借用。 Read more

执行转换。

执行转换。

将给定值转换为 StringRead more

发生转换错误时返回的类型。

执行转换。

发生转换错误时返回的类型。

执行转换。