File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1625,7 +1625,7 @@ impl<T: Send> error::Error for TrySendError<T> {
16251625 }
16261626}
16271627
1628- #[ stable( feature = "mpsc_error_conversions" , since = "1.23 .0" ) ]
1628+ #[ stable( feature = "mpsc_error_conversions" , since = "1.24 .0" ) ]
16291629impl < T > From < SendError < T > > for TrySendError < T > {
16301630 fn from ( err : SendError < T > ) -> TrySendError < T > {
16311631 match err {
@@ -1686,7 +1686,7 @@ impl error::Error for TryRecvError {
16861686 }
16871687}
16881688
1689- #[ stable( feature = "mpsc_error_conversions" , since = "1.23 .0" ) ]
1689+ #[ stable( feature = "mpsc_error_conversions" , since = "1.24 .0" ) ]
16901690impl From < RecvError > for TryRecvError {
16911691 fn from ( err : RecvError ) -> TryRecvError {
16921692 match err {
@@ -1727,7 +1727,7 @@ impl error::Error for RecvTimeoutError {
17271727 }
17281728}
17291729
1730- #[ stable( feature = "mpsc_error_conversions" , since = "1.23 .0" ) ]
1730+ #[ stable( feature = "mpsc_error_conversions" , since = "1.24 .0" ) ]
17311731impl From < RecvError > for RecvTimeoutError {
17321732 fn from ( err : RecvError ) -> RecvTimeoutError {
17331733 match err {
You can’t perform that action at this time.
0 commit comments