pub trait FromWide {
    fn to_u16_slice(&self) -> &[u16];

    fn to_os_string(&self) -> OsString { ... }
    fn from_wide(&self) -> Option<String> { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors