Trait emf_core_base_rs::ToOsPathBuff[][src]

pub trait ToOsPathBuff {
    fn to_os_path_buff(&self) -> Vec<OSPathChar>;
fn to_os_path_buff_null(&self) -> Vec<OSPathChar>; }

Trait for encoding into the platforms preferred encoding.

Required methods

fn to_os_path_buff(&self) -> Vec<OSPathChar>[src]

Creates an owned buffer with the platforms preferred encoding.

fn to_os_path_buff_null(&self) -> Vec<OSPathChar>[src]

Like to_os_path_buff, but with an additional null terminator.

Loading content...

Implementors

impl<T> ToOsPathBuff for T where
    T: AsRef<OsStr>, 
[src]

Loading content...