Rollup merge of #124076 - NobodyXu:patch-1, r=dtolnay

Stablise io_error_downcast

Tracking issue #99262
Closes #99262

FCP completed in https://github.com/rust-lang/rust/issues/99262#issuecomment-2077374397
This commit is contained in:
Michael Goulet 2024-04-25 20:07:40 -04:00 committed by GitHub
commit 6f5c69e65f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -869,8 +869,6 @@ pub fn into_inner(self) -> Option<Box<dyn error::Error + Send + Sync>> {
/// # Examples /// # Examples
/// ///
/// ``` /// ```
/// #![feature(io_error_downcast)]
///
/// use std::fmt; /// use std::fmt;
/// use std::io; /// use std::io;
/// use std::error::Error; /// use std::error::Error;
@ -923,7 +921,7 @@ pub fn into_inner(self) -> Option<Box<dyn error::Error + Send + Sync>> {
/// assert!(io_error.raw_os_error().is_none()); /// assert!(io_error.raw_os_error().is_none());
/// # } /// # }
/// ``` /// ```
#[unstable(feature = "io_error_downcast", issue = "99262")] #[stable(feature = "io_error_downcast", since = "CURRENT_RUSTC_VERSION")]
pub fn downcast<E>(self) -> result::Result<E, Self> pub fn downcast<E>(self) -> result::Result<E, Self>
where where
E: error::Error + Send + Sync + 'static, E: error::Error + Send + Sync + 'static,