pub trait OsStringExt: Sealed {
    fn from_vec(vec: Vec<u8>) -> Self;
    fn into_vec(self) -> Vec<u8>;
}
Expand description

Platform-specific extensions to OsString.

This trait is sealed: it cannot be implemented outside the standard library. This is so that future additional methods are not breaking changes.

Required Methods

Creates an OsString from a byte vector.

See the module documentation for an example.

Yields the underlying byte vector of this OsString.

See the module documentation for an example.

Implementors