pub trait IntoWideIter {
    type Iter: Iterator<Item = u16>;

    fn into_wide_iter(self) -> Self::Iter;
}
Expand description

A trait to make it easier to pass arguments to functions.

Required Associated Types

The Iterator type

Required Methods

Convert this object into something that yields possibly invalid wide characters.

Implementations on Foreign Types

Implementors