Enum utf16_ext::AutoWriter [] [src]

pub enum AutoWriter<W> {
    Little(W),
    Big(W),
}

A writer that will store whether to write in little or big endian

Variants

Little endian writer

Big endian writer

Methods

impl<W: Utf16WriteExt> AutoWriter<W>
[src]

[src]

Writes a BOM in the writer and returns a new AutoWriter in little endian

[src]

Writes a BOM in the writer and returns a new AutoWriter in big endian

[src]

Mirror of Utf16WriteExt::write_shorts without the type parameter for endianness

[src]

Mirror of Utf16WriteExt::write_all_shorts without the type parameter for endianness

[src]

Mirror of Utf16WriteExt::write_utf16_string without the type parameter for endianness