pub struct SendError<T>(pub T);
Expand description
从 通道 上的 Sender::send
或 SyncSender::send
函数返回错误。
仅当通道的接收端断开连接时,发送操作才会失败,这意味着永远无法接收到数据。 该错误包含作为有效载荷发送的数据,因此可以对其进行恢复。
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T> Error for SendError<T>
impl<T> Error for SendError<T>
1.24.0 · source§impl<T> From<SendError<T>> for TrySendError<T>
impl<T> From<SendError<T>> for TrySendError<T>
source§fn from(err: SendError<T>) -> TrySendError<T>
fn from(err: SendError<T>) -> TrySendError<T>
将 SendError<T>
转换为 TrySendError<T>
。
这种转换总是返回一个包含 SendError<T>
中数据的 TrySendError::Disconnected
。
没有在堆上分配数据。
impl<T: Copy> Copy for SendError<T>
impl<T: Eq> Eq for SendError<T>
impl<T> StructuralEq for SendError<T>
impl<T> StructuralPartialEq for SendError<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for SendError<T>where T: RefUnwindSafe,
impl<T> Send for SendError<T>where T: Send,
impl<T> Sync for SendError<T>where T: Sync,
impl<T> Unpin for SendError<T>where T: Unpin,
impl<T> UnwindSafe for SendError<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
从拥有的值中借用。 Read more