pub trait AsWide {
type Iter: Iterator<Item = u16>;
// Required method
fn as_wide(&self) -> Self::Iter;
}
Expand description
Implemented for types that can be converted into wide char arrays.
pub trait AsWide {
type Iter: Iterator<Item = u16>;
// Required method
fn as_wide(&self) -> Self::Iter;
}
Implemented for types that can be converted into wide char arrays.