Enum byteorder::LittleEndian [] [src]

pub enum LittleEndian {}

Defines little-endian serialization.

Note that this type has no value constructor. It is used purely at the type level.

Trait Implementations

impl ByteOrder for LittleEndian
[src]

[src]

Reads an unsigned 16 bit integer from buf. Read more

[src]

Reads an unsigned 32 bit integer from buf. Read more

[src]

Reads an unsigned 64 bit integer from buf. Read more

[src]

Reads an unsigned n-bytes integer from buf. Read more

[src]

Writes an unsigned 16 bit integer n to buf. Read more

[src]

Writes an unsigned 32 bit integer n to buf. Read more

[src]

Writes an unsigned 64 bit integer n to buf. Read more

[src]

Writes an unsigned integer n to buf using only nbytes. Read more

[src]

Reads a signed 16 bit integer from buf. Read more

[src]

Reads a signed 32 bit integer from buf. Read more

[src]

Reads a signed 64 bit integer from buf. Read more

[src]

Reads a signed n-bytes integer from buf. Read more

[src]

Reads a IEEE754 single-precision (4 bytes) floating point number. Read more

[src]

Reads a IEEE754 double-precision (8 bytes) floating point number. Read more

[src]

Writes a signed 16 bit integer n to buf. Read more

[src]

Writes a signed 32 bit integer n to buf. Read more

[src]

Writes a signed 64 bit integer n to buf. Read more

[src]

Writes a signed integer n to buf using only nbytes. Read more

[src]

Writes a IEEE754 single-precision (4 bytes) floating point number. Read more

[src]

Writes a IEEE754 double-precision (8 bytes) floating point number. Read more