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
u16s. - Decode
Utf32 - An iterator that decodes UTF-32 encoded code points from an iterator of
u32s. - Decode
Utf16 Lossy - An iterator that lossily decodes possibly ill-formed UTF-16 encoded code points from an iterator
of
u16s. - Decode
Utf32 Lossy - An iterator that lossily decodes possibly ill-formed UTF-32 encoded code points from an iterator
of
u32s. - Encode
Utf8 - An iterator that encodes an iterator of
chars into UTF-8 bytes. - Encode
Utf16 - An iterator that encodes an iterator of
chars into UTF-16u16code units. - Encode
Utf32 - An iterator that encodes an iterator of
chars into UTF-32u32values.