Expand description
Crate for extending the Read
and Write
traits to allow
for reading and writing utf-16
Re-exports§
pub extern crate byteorder;
Structs§
- Chars
- An iterator over
char
values of a utf-16 reader. - Lines
- An iterator over the lines of a reader (reading utf-16)
- Shorts
- An iterator over
u16
values of a reader.
Enums§
- Auto
Endian Chars - An iterator over
char
s from anAutoEndianReader
- Auto
Endian Lines - An iterator over lines from an
AutoEndianReader
- Auto
Endian Reader - A reader that will store whether to read in little or big endian
- Auto
Endian Shorts - An iterator over
u16
s from anAutoEndianReader
- Auto
Writer - A writer that will store whether to write in little or big endian
- Utf16
Written - Represents how much a string buffer was written
Traits§
- Utf16
Read Ext - Extension to the
Read
trait - Utf16
Write Ext - An extension of
std::io::Write
for utf16