pub trait DecodedChars {
// Required method
fn decoded_chars(&self) -> Utf8Decoded<Chars<'_>> ⓘ;
}Expand description
Extension for str providing the decoded_char method.
Required Methods§
Sourcefn decoded_chars(&self) -> Utf8Decoded<Chars<'_>> ⓘ
fn decoded_chars(&self) -> Utf8Decoded<Chars<'_>> ⓘ
Returns an iterator over the UTF-8 decoded characters of the string,
wrapped inside a DecodedChar.