Enum gimli::RunTimeEndian [] [src]

pub enum RunTimeEndian {
    Little,
    Big,
}

Byte order that is selectable at runtime.

Variants

Little endian byte order.

Big endian byte order.

Trait Implementations

impl Debug for RunTimeEndian
[src]

Formats the value using the given formatter.

impl Clone for RunTimeEndian
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for RunTimeEndian
[src]

impl PartialEq for RunTimeEndian
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for RunTimeEndian
[src]

impl Hash for RunTimeEndian
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for RunTimeEndian
[src]

Returns the "default value" for a type. Read more

impl Endianity for RunTimeEndian
[src]

Return true for big endian byte order.

Return true for little endian byte order.

Reads an unsigned 16 bit integer from buf. Read more

Reads an unsigned 32 bit integer from buf. Read more

Reads an unsigned 64 bit integer from buf. Read more

Reads a signed 16 bit integer from buf. Read more

Reads a signed 32 bit integer from buf. Read more

Reads a signed 64 bit integer from buf. Read more

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