Expand description
Iterators for encoding and decoding slices of string data.
Structs§
- Decode
Utf16 - An iterator that decodes UTF-16 encoded code points from an iterator of
u16
s. - Decode
Utf32 - An iterator that decodes UTF-32 encoded code points from an iterator of
u32
s. - Decode
Utf16 Lossy - An iterator that lossily decodes possibly ill-formed UTF-16 encoded code points from an iterator
of
u16
s. - Decode
Utf32 Lossy - An iterator that lossily decodes possibly ill-formed UTF-32 encoded code points from an iterator
of
u32
s. - Encode
Utf8 - An iterator that encodes an iterator of
char
s into UTF-8 bytes. - Encode
Utf16 - An iterator that encodes an iterator of
char
s into UTF-16u16
code units. - Encode
Utf32 - An iterator that encodes an iterator of
char
s into UTF-32u32
values.