Closed
Description
Feature gate: #![feature(io_error_other)]
This is a tracking issue for io::Error::other(err)
, a shortcut for io::Error::new(io::ErrorKind::Other, err)
Public API
// std::io
impl Error {
pub fn other<E>(error: E) -> Error
where
E: Into<Box<dyn error::Error + Send + Sync>>;
}
Steps / History
- Implementation: Add
io::Error::other
#91947 - Final comment period (FCP)
- Stabilization PR: Stabilize
io_error_other
feature #115453
Unresolved Questions
- None yet.