Trait std::os::unix::ffi::OsStringExt1.0.0 [] [src]

pub trait OsStringExt {
    fn from_vec(vec: Vec<u8>) -> Self;
fn into_vec(self) -> Vec<u8>; }
This is supported on Redox only.

Unix-specific extensions to OsString.

Required Methods

This is supported on Redox only.

Creates an OsString from a byte vector.

Important traits for Vec<u8>

This is supported on Redox only.

Yields the underlying byte vector of this OsString.

Implementors