Trait utf8_iter::Utf8CharsEx
source · pub trait Utf8CharsEx {
// Required methods
fn chars(&self) -> Utf8Chars<'_> ⓘ;
fn char_indices(&self) -> Utf8CharIndices<'_> ⓘ;
}
Expand description
Convenience trait that adds chars()
and char_indices()
methods
similar to the ones on string slices to byte slices.
Required Methods§
fn chars(&self) -> Utf8Chars<'_> ⓘ
fn char_indices(&self) -> Utf8CharIndices<'_> ⓘ
Implementations on Foreign Types§
source§impl Utf8CharsEx for [u8]
impl Utf8CharsEx for [u8]
source§fn chars(&self) -> Utf8Chars<'_> ⓘ
fn chars(&self) -> Utf8Chars<'_> ⓘ
Convenience method for creating an UTF-8 iterator for the slice.
source§fn char_indices(&self) -> Utf8CharIndices<'_> ⓘ
fn char_indices(&self) -> Utf8CharIndices<'_> ⓘ
Convenience method for creating a byte index and UTF-8 iterator for the slice.