diff options
| author | Jake Goulding <jake.goulding@gmail.com> | 2023-08-18 13:05:49 -0400 |
|---|---|---|
| committer | Jake Goulding <jake.goulding@gmail.com> | 2023-08-18 13:06:53 -0400 |
| commit | 74942daf712c0b8cbba50864f22ca5bd919ab1cb (patch) | |
| tree | 14e28337e53d891c88b4fa19c31e8adbd3c1abd4 | |
| parent | 2ceed0b6cb9e9866225d7cfcfcbb4a62db047163 (diff) | |
| download | rust-74942daf712c0b8cbba50864f22ca5bd919ab1cb.tar.gz rust-74942daf712c0b8cbba50864f22ca5bd919ab1cb.zip | |
Expose core::error::request_value in std
I think this was simply forgotten in #113464.
| -rw-r--r-- | library/std/src/error.rs | 2 |
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` |
