@@ -4,22 +4,28 @@ use std::error::Error;
4
4
use std:: fmt;
5
5
6
6
/// Error returned by the `Sender`.
7
- #[ derive( Debug ) ]
7
+ #[ derive( PartialEq , Eq , Clone , Copy ) ]
8
8
pub struct SendError < T > ( pub T ) ;
9
9
10
+ impl < T > fmt:: Debug for SendError < T > {
11
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
12
+ f. debug_struct ( "SendError" ) . finish_non_exhaustive ( )
13
+ }
14
+ }
15
+
10
16
impl < T > fmt:: Display for SendError < T > {
11
17
fn fmt ( & self , fmt : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
12
18
write ! ( fmt, "channel closed" )
13
19
}
14
20
}
15
21
16
- impl < T : fmt :: Debug > std:: error:: Error for SendError < T > { }
22
+ impl < T > std:: error:: Error for SendError < T > { }
17
23
18
24
// ===== TrySendError =====
19
25
20
26
/// This enumeration is the list of the possible error outcomes for the
21
27
/// [try_send](super::Sender::try_send) method.
22
- #[ derive( Debug , Eq , PartialEq ) ]
28
+ #[ derive( PartialEq , Eq , Clone , Copy ) ]
23
29
pub enum TrySendError < T > {
24
30
/// The data could not be sent on the channel because the channel is
25
31
/// currently full and sending would require blocking.
@@ -30,7 +36,14 @@ pub enum TrySendError<T> {
30
36
Closed ( T ) ,
31
37
}
32
38
33
- impl < T : fmt:: Debug > Error for TrySendError < T > { }
39
+ impl < T > fmt:: Debug for TrySendError < T > {
40
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
41
+ match * self {
42
+ TrySendError :: Full ( ..) => "Full(..)" . fmt ( f) ,
43
+ TrySendError :: Closed ( ..) => "Closed(..)" . fmt ( f) ,
44
+ }
45
+ }
46
+ }
34
47
35
48
impl < T > fmt:: Display for TrySendError < T > {
36
49
fn fmt ( & self , fmt : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
@@ -45,6 +58,8 @@ impl<T> fmt::Display for TrySendError<T> {
45
58
}
46
59
}
47
60
61
+ impl < T > Error for TrySendError < T > { }
62
+
48
63
impl < T > From < SendError < T > > for TrySendError < T > {
49
64
fn from ( src : SendError < T > ) -> TrySendError < T > {
50
65
TrySendError :: Closed ( src. 0 )
@@ -96,7 +111,7 @@ impl Error for RecvError {}
96
111
cfg_time ! {
97
112
// ===== SendTimeoutError =====
98
113
99
- #[ derive( Debug , Eq , PartialEq ) ]
114
+ #[ derive( PartialEq , Eq , Clone , Copy ) ]
100
115
/// Error returned by [`Sender::send_timeout`](super::Sender::send_timeout)].
101
116
pub enum SendTimeoutError <T > {
102
117
/// The data could not be sent on the channel because the channel is
@@ -108,7 +123,14 @@ cfg_time! {
108
123
Closed ( T ) ,
109
124
}
110
125
111
- impl <T : fmt:: Debug > Error for SendTimeoutError <T > { }
126
+ impl <T > fmt:: Debug for SendTimeoutError <T > {
127
+ fn fmt( & self , f: & mut fmt:: Formatter <' _>) -> fmt:: Result {
128
+ match * self {
129
+ SendTimeoutError :: Timeout ( ..) => "Timeout(..)" . fmt( f) ,
130
+ SendTimeoutError :: Closed ( ..) => "Closed(..)" . fmt( f) ,
131
+ }
132
+ }
133
+ }
112
134
113
135
impl <T > fmt:: Display for SendTimeoutError <T > {
114
136
fn fmt( & self , fmt: & mut fmt:: Formatter <' _>) -> fmt:: Result {
@@ -122,4 +144,6 @@ cfg_time! {
122
144
)
123
145
}
124
146
}
147
+
148
+ impl <T > Error for SendTimeoutError <T > { }
125
149
}
0 commit comments