Struct gimli::LittleEndian[][src]

pub struct LittleEndian;

Little endian byte order.

Trait Implementations

impl Debug for LittleEndian
[src]

Formats the value using the given formatter. Read more

impl Clone for LittleEndian
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for LittleEndian
[src]

impl PartialEq for LittleEndian
[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 LittleEndian
[src]

impl Hash for LittleEndian
[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 LittleEndian
[src]

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

impl Endianity for LittleEndian
[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

Reads a 32 bit floating point number from buf. Read more

Reads a 32 bit floating point number from buf. Read more

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

Auto Trait Implementations