Open
Description
Feature gate: #![feature(io_error_inprogress)]
This is a tracking issue for the InProgress
variant on std::io::Error
, equivalent to the Unix EINPROGRESS
(no equivalent on other platforms).
Public API
// std::io
pub enum ErrorKind {
// ...
InProgress,
//
}
Steps / History
- ACP: Add
InProgress
variant toio::ErrorKind
libs-team#92 - Implementation:
- Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.