pub trait IntoOsString {
// Required method
fn into_os_string(self) -> OsString;
}Available on crate feature
std only.Expand description
Required Methods§
Sourcefn into_os_string(self) -> OsString
fn into_os_string(self) -> OsString
Converts value into an OS string.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".