File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ impl<T> fmt::Display for SendTimeoutError<T> {
35
35
}
36
36
}
37
37
38
- impl < T : Send > error:: Error for SendTimeoutError < T > { }
38
+ impl < T > error:: Error for SendTimeoutError < T > { }
39
39
40
40
impl < T > From < SendError < T > > for SendTimeoutError < T > {
41
41
fn from ( err : SendError < T > ) -> SendTimeoutError < T > {
Original file line number Diff line number Diff line change @@ -1124,7 +1124,7 @@ impl<T> fmt::Display for SendError<T> {
1124
1124
}
1125
1125
1126
1126
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1127
- impl < T : Send > error:: Error for SendError < T > {
1127
+ impl < T > error:: Error for SendError < T > {
1128
1128
#[ allow( deprecated) ]
1129
1129
fn description ( & self ) -> & str {
1130
1130
"sending on a closed channel"
@@ -1152,7 +1152,7 @@ impl<T> fmt::Display for TrySendError<T> {
1152
1152
}
1153
1153
1154
1154
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1155
- impl < T : Send > error:: Error for TrySendError < T > {
1155
+ impl < T > error:: Error for TrySendError < T > {
1156
1156
#[ allow( deprecated) ]
1157
1157
fn description ( & self ) -> & str {
1158
1158
match * self {
You can’t perform that action at this time.
0 commit comments