From 74942daf712c0b8cbba50864f22ca5bd919ab1cb Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Fri, 18 Aug 2023 13:05:49 -0400 Subject: [PATCH] Expose core::error::request_value in std I think this was simply forgotten in #113464. --- library/std/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/error.rs b/library/std/src/error.rs index 7bc3af1793e36..375ff2d245044 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`