Trait sgx_tstd::os::unix::prelude::OsStringExt[][src]

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

Unix-specific extensions to OsString.

Required Methods

Creates an [OsString] from a byte vector.

Yields the underlying byte vector of this [OsString].

Implementors