@@ -364,12 +364,12 @@ pub trait Error: Debug + Display {
364
364
/// assert!(core::ptr::eq(&error.backtrace, backtrace_ref));
365
365
/// }
366
366
/// ```
367
- #[ unstable( feature = "error_generic_member_access" , issue = "none " ) ]
367
+ #[ unstable( feature = "error_generic_member_access" , issue = "99301 " ) ]
368
368
#[ allow( unused_variables) ]
369
369
fn provide < ' a > ( & ' a self , req : & mut Demand < ' a > ) { }
370
370
}
371
371
372
- #[ unstable( feature = "error_generic_member_access" , issue = "none " ) ]
372
+ #[ unstable( feature = "error_generic_member_access" , issue = "99301 " ) ]
373
373
impl Provider for dyn Error + ' static {
374
374
fn provide < ' a > ( & ' a self , req : & mut Demand < ' a > ) {
375
375
self . provide ( req)
@@ -912,13 +912,13 @@ impl dyn Error + 'static {
912
912
}
913
913
914
914
/// Request a reference of type `T` as context about this error.
915
- #[ unstable( feature = "error_generic_member_access" , issue = "none " ) ]
915
+ #[ unstable( feature = "error_generic_member_access" , issue = "99301 " ) ]
916
916
pub fn request_ref < T : ?Sized + ' static > ( & self ) -> Option < & T > {
917
917
core:: any:: request_ref ( self )
918
918
}
919
919
920
920
/// Request a value of type `T` as context about this error.
921
- #[ unstable( feature = "error_generic_member_access" , issue = "none " ) ]
921
+ #[ unstable( feature = "error_generic_member_access" , issue = "99301 " ) ]
922
922
pub fn request_value < T : ' static > ( & self ) -> Option < T > {
923
923
core:: any:: request_value ( self )
924
924
}
@@ -947,13 +947,13 @@ impl dyn Error + 'static + Send {
947
947
}
948
948
949
949
/// Request a reference of type `T` as context about this error.
950
- #[ unstable( feature = "error_generic_member_access" , issue = "none " ) ]
950
+ #[ unstable( feature = "error_generic_member_access" , issue = "99301 " ) ]
951
951
pub fn request_ref < T : ?Sized + ' static > ( & self ) -> Option < & T > {
952
952
<dyn Error + ' static >:: request_ref ( self )
953
953
}
954
954
955
955
/// Request a value of type `T` as context about this error.
956
- #[ unstable( feature = "error_generic_member_access" , issue = "none " ) ]
956
+ #[ unstable( feature = "error_generic_member_access" , issue = "99301 " ) ]
957
957
pub fn request_value < T : ' static > ( & self ) -> Option < T > {
958
958
<dyn Error + ' static >:: request_value ( self )
959
959
}
@@ -982,13 +982,13 @@ impl dyn Error + 'static + Send + Sync {
982
982
}
983
983
984
984
/// Request a reference of type `T` as context about this error.
985
- #[ unstable( feature = "error_generic_member_access" , issue = "none " ) ]
985
+ #[ unstable( feature = "error_generic_member_access" , issue = "99301 " ) ]
986
986
pub fn request_ref < T : ?Sized + ' static > ( & self ) -> Option < & T > {
987
987
<dyn Error + ' static >:: request_ref ( self )
988
988
}
989
989
990
990
/// Request a value of type `T` as context about this error.
991
- #[ unstable( feature = "error_generic_member_access" , issue = "none " ) ]
991
+ #[ unstable( feature = "error_generic_member_access" , issue = "99301 " ) ]
992
992
pub fn request_value < T : ' static > ( & self ) -> Option < T > {
993
993
<dyn Error + ' static >:: request_value ( self )
994
994
}
0 commit comments