Struct bitflags::__core::ffi::OsString [] [src]

pub struct OsString {
    // some fields omitted
}
1.0.0
[]

A type that can represent owned, mutable platform-native strings, but is cheaply inter-convertible with Rust strings.

The need for this type arises from the fact that:

OsString and OsStr bridge this gap by simultaneously representing Rust and platform-native string values, and in particular allowing a Rust string to be converted into an "OS" string with no cost.