Trait ToWideString

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

Required Methods§

Source

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

Source

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

Implementors§

Source§

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