Struct collections::str::EncodeUtf16 1.8.0
[−]
[src]
pub struct EncodeUtf16<'a> { /* fields omitted */ }An iterator of u16 over the string encoded as UTF-16.
This struct is created by the encode_utf16 method on str.
See its documentation for more.
Trait Implementations
impl<'a> Iterator for EncodeUtf16<'a>[src]
type Item = u16
fn next(&mut self) -> Option<u16>[src]
fn size_hint(&self) -> (usize, Option<usize>)[src]
impl<'a> FusedIterator for EncodeUtf16<'a>[src]
impl<'a> Debug for EncodeUtf16<'a>1.17.0[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.