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]

[src]

Formats the value using the given formatter.

impl Clone for RunTimeEndian
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for RunTimeEndian
[src]

impl PartialEq for RunTimeEndian
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for RunTimeEndian
[src]

impl Hash for RunTimeEndian
[src]

[src]

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

1.3.0
[src]

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

impl Default for RunTimeEndian
[src]

[src]

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

impl Endianity for RunTimeEndian
[src]

[src]

Return true for big endian byte order.

[src]

Return true for little endian byte order.

[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 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]

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