Struct Wtf8CodePoints
pub struct Wtf8CodePoints<'a> { pub(in ::wtf8) bytes: Iter<'a, u8> }
Iterator for the code points of a WTF-8 string.
Created with the method .code_points().
Fields
bytes: Iter<'a, u8>
Trait Implementations
impl Debug for Wtf8CodePoints<'_>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Iterator for Wtf8CodePoints<'_>
type Item = CodePoint;fn next(&mut self) -> Option<CodePoint>fn size_hint(&self) -> (usize, Option<usize>)
impl<'a> Clone for Wtf8CodePoints<'a>
fn clone(&self) -> Wtf8CodePoints<'a>