about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-08-20 00:28:32 +0200
committerGitHub <noreply@github.com>2023-08-20 00:28:32 +0200
commitcbcdf7580b6b8b44da5d2d4b106f639d7bd33b9d (patch)
treeee19fec2fb09d1dd3b385edfdf60fadce9e075c4 /library/std/src
parentcad8f8cbffc2247e95d27111b4683afe723a549a (diff)
parent74942daf712c0b8cbba50864f22ca5bd919ab1cb (diff)
downloadrust-cbcdf7580b6b8b44da5d2d4b106f639d7bd33b9d.tar.gz
rust-cbcdf7580b6b8b44da5d2d4b106f639d7bd33b9d.zip
Rollup merge of #114973 - shepmaster:std-provide-value, r=Amanieu
Expose core::error::request_value in std

I think this was simply forgotten in #113464.

/cc ``@waynr``

r? ``@Amanieu``
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/error.rs b/library/std/src/error.rs
index 7bc3af1793e..375ff2d2450 100644
--- a/library/std/src/error.rs
+++ b/library/std/src/error.rs
@@ -10,7 +10,7 @@ use crate::fmt::{self, Write};
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use core::error::Error;
 #[unstable(feature = "error_generic_member_access", issue = "99301")]
-pub use core::error::{request_ref, Request};
+pub use core::error::{request_ref, request_value, Request};
 
 mod private {
     // This is a hack to prevent `type_id` from being overridden by `Error`