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

Required Methods§

Implementors§