pub trait IntoWide {
    fn into_wide(self) -> Vec<u16>;
}
Expand description

Implemented for types that can be converted into wide types

Required Methods§

Convert this into a vec of wide chars

Implementors should reserve 1 extra element of space for the nul terminator. The vec may contain nul elements, but they will be rejected in some places in the api.

Implementations on Foreign Types§

Implementors§