@@ -2988,13 +2988,13 @@ impl Try for _DummyErrorType {
2988
2988
/// in terms of a success/failure dichotomy. This trait allows both
2989
2989
/// extracting those success or failure values from an existing instance and
2990
2990
/// creating a new instance from a success or failure value.
2991
- #[ unstable( feature = "try_trait" , issue = "31436 " ) ]
2991
+ #[ unstable( feature = "try_trait" , issue = "42327 " ) ]
2992
2992
pub trait Try {
2993
2993
/// The type of this value when viewed as successful.
2994
- #[ unstable( feature = "try_trait" , issue = "31436 " ) ]
2994
+ #[ unstable( feature = "try_trait" , issue = "42327 " ) ]
2995
2995
type Ok ;
2996
2996
/// The type of this value when viewed as failed.
2997
- #[ unstable( feature = "try_trait" , issue = "31436 " ) ]
2997
+ #[ unstable( feature = "try_trait" , issue = "42327 " ) ]
2998
2998
type Error ;
2999
2999
3000
3000
/// Applies the "?" operator. A return of `Ok(t)` means that the
@@ -3006,16 +3006,16 @@ pub trait Try {
3006
3006
/// in the return type of the enclosing scope (which must itself implement
3007
3007
/// `Try`). Specifically, the value `X::from_error(From::from(e))`
3008
3008
/// is returned, where `X` is the return type of the enclosing function.
3009
- #[ unstable( feature = "try_trait" , issue = "31436 " ) ]
3009
+ #[ unstable( feature = "try_trait" , issue = "42327 " ) ]
3010
3010
fn into_result ( self ) -> Result < Self :: Ok , Self :: Error > ;
3011
3011
3012
3012
/// Wrap an error value to construct the composite result. For example,
3013
3013
/// `Result::Err(x)` and `Result::from_error(x)` are equivalent.
3014
- #[ unstable( feature = "try_trait" , issue = "31436 " ) ]
3014
+ #[ unstable( feature = "try_trait" , issue = "42327 " ) ]
3015
3015
fn from_error ( v : Self :: Error ) -> Self ;
3016
3016
3017
3017
/// Wrap an OK value to construct the composite result. For example,
3018
3018
/// `Result::Ok(x)` and `Result::from_ok(x)` are equivalent.
3019
- #[ unstable( feature = "try_trait" , issue = "31436 " ) ]
3019
+ #[ unstable( feature = "try_trait" , issue = "42327 " ) ]
3020
3020
fn from_ok ( v : Self :: Ok ) -> Self ;
3021
3021
}
0 commit comments