pub trait ToWideString {
    // Required methods
    fn to_wide(&self) -> Vec<u16>;
    fn to_wides_with_nul(&self) -> Vec<u16>;
}

Required Methods§

source

fn to_wide(&self) -> Vec<u16>

source

fn to_wides_with_nul(&self) -> Vec<u16>

Implementors§

source§

impl<T> ToWideString for T
where T: AsRef<OsStr>,