Closed
Description
Feature gate: #![feature(os_str_display)]
This is a tracking issue for the OsStr::display
method.
Public API
// std::ffi
pub mod os_str {
pub struct Display<'a> { /* private fields */ }
}
impl OsStr {
pub fn display(&self) -> os_str::Display<'_>;
}
Steps / History
- ACP: ACP: Add
OsStr::display
(similar toPath::display
) libs-team#326 - Implementation: Add
display
method toOsStr
#120051 - Final comment period (FCP)1
- Stabilization PR: Stabilise
os_str_display
#137336
Unresolved Questions
- None yet.