@@ -4192,7 +4192,7 @@ macro_rules! from_str_radix_int_impl {
4192
4192
from_str_radix_int_impl ! { isize i8 i16 i32 i64 i128 usize u8 u16 u32 u64 u128 }
4193
4193
4194
4194
/// The error type returned when a checked integral type conversion fails.
4195
- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4195
+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
4196
4196
#[ derive( Debug , Copy , Clone ) ]
4197
4197
pub struct TryFromIntError ( ( ) ) ;
4198
4198
@@ -4207,14 +4207,14 @@ impl TryFromIntError {
4207
4207
}
4208
4208
}
4209
4209
4210
- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4210
+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
4211
4211
impl fmt:: Display for TryFromIntError {
4212
4212
fn fmt ( & self , fmt : & mut fmt:: Formatter ) -> fmt:: Result {
4213
4213
self . __description ( ) . fmt ( fmt)
4214
4214
}
4215
4215
}
4216
4216
4217
- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4217
+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
4218
4218
impl From < !> for TryFromIntError {
4219
4219
fn from ( never : !) -> TryFromIntError {
4220
4220
never
@@ -4224,7 +4224,7 @@ impl From<!> for TryFromIntError {
4224
4224
// only negative bounds
4225
4225
macro_rules! try_from_lower_bounded {
4226
4226
( $source: ty, $( $target: ty) ,* ) => { $(
4227
- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4227
+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
4228
4228
impl TryFrom <$source> for $target {
4229
4229
type Error = TryFromIntError ;
4230
4230
@@ -4243,7 +4243,7 @@ macro_rules! try_from_lower_bounded {
4243
4243
// unsigned to signed (only positive bound)
4244
4244
macro_rules! try_from_upper_bounded {
4245
4245
( $source: ty, $( $target: ty) ,* ) => { $(
4246
- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4246
+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
4247
4247
impl TryFrom <$source> for $target {
4248
4248
type Error = TryFromIntError ;
4249
4249
@@ -4262,7 +4262,7 @@ macro_rules! try_from_upper_bounded {
4262
4262
// all other cases
4263
4263
macro_rules! try_from_both_bounded {
4264
4264
( $source: ty, $( $target: ty) ,* ) => { $(
4265
- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4265
+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
4266
4266
impl TryFrom <$source> for $target {
4267
4267
type Error = TryFromIntError ;
4268
4268
0 commit comments