IntoWideIter

Trait IntoWideIter 

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

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

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

Required Associated Types§

Source

type Iter: Iterator<Item = u16>

The Iterator type

Required Methods§

Source

fn into_wide_iter(self) -> Self::Iter

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

Implementations on Foreign Types§

Source§

impl IntoWideIter for Vec<u16>

Source§

impl<'a> IntoWideIter for &&'a str

Source§

impl<'a> IntoWideIter for &'a str

Source§

impl<'a> IntoWideIter for &'a String

Source§

impl<'a> IntoWideIter for &'a Vec<u16>

Source§

type Iter = Copied<Iter<'a, u16>>

Source§

fn into_wide_iter(self) -> Self::Iter

Source§

impl<'a> IntoWideIter for &'a [u16]

Source§

type Iter = Copied<Iter<'a, u16>>

Source§

fn into_wide_iter(self) -> Self::Iter

Implementors§