Enum std::sync::mpsc::TrySendError1.0.0[][src]

pub enum TrySendError<T> {
    Full(T),
    Disconnected(T),
}
Expand description

此枚举是 try_send 方法可能出现的错误结果的列表。

Variants

Full(T)

无法在 sync_channel 上发送数据,因为这将要求被调用方块发送数据。

如果这是一个缓冲的通道,则此时缓冲区已满。 如果这不是缓冲的通道,则没有 Receiver 可用于获取数据。

Disconnected(T)

sync_channel 的接收部分已断开连接,因此无法发送数据。 在这种情况下,数据将返回给被调用方。

Trait Implementations

返回值的副本。 Read more

source 执行复制分配。 Read more

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

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

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

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

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

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

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

SendError<T> 转换为 TrySendError<T>

这种转换总是返回一个包含 SendError<T> 中数据的 TrySendError::Disconnected

没有在堆上分配数据。

此方法测试 selfother 值是否相等,并由 == 使用。 Read more

此方法测试 !=

Auto Trait Implementations

Blanket Implementations

获取 selfTypeIdRead more

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

从拥有的值中借用。 Read more

执行转换。

执行转换。

获得所有权后的结果类型。

通常通过克隆从借用数据中创建拥有的数据。 Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)

recently added

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more

将给定值转换为 StringRead more

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

执行转换。

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

执行转换。