impl Error for SendError

This commit is contained in:
Nikolay Kim 2020-04-13 15:16:37 +06:00
parent 7adfb7b338
commit 2fdffff96f

View file

@ -1,8 +1,7 @@
//! A multi-producer, single-consumer, futures-aware, FIFO queue.
use std::any::Any;
use std::collections::VecDeque;
use std::error::Error;
use std::fmt;
use std::error::Error;
use std::pin::Pin;
use std::task::{Context, Poll};
@ -173,6 +172,8 @@ impl<T> Drop for Receiver<T> {
/// dropped
pub struct SendError<T>(T);
impl<T> Error for SendError<T> {}
impl<T> fmt::Debug for SendError<T> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_tuple("SendError").field(&"...").finish()