Struct gimli::LittleEndian [−][src]
pub struct LittleEndian;
Little endian byte order.
Trait Implementations
impl Debug for LittleEndian[src]
impl Debug for LittleEndianfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for LittleEndian[src]
impl Clone for LittleEndianfn clone(&self) -> LittleEndian[src]
fn clone(&self) -> LittleEndianReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for LittleEndian[src]
impl Copy for LittleEndianimpl PartialEq for LittleEndian[src]
impl PartialEq for LittleEndianfn eq(&self, other: &LittleEndian) -> bool[src]
fn eq(&self, other: &LittleEndian) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Eq for LittleEndian[src]
impl Eq for LittleEndianimpl Hash for LittleEndian[src]
impl Hash for LittleEndianfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Default for LittleEndian[src]
impl Default for LittleEndianfn default() -> LittleEndian[src]
fn default() -> LittleEndianReturns the "default value" for a type. Read more
impl Endianity for LittleEndian[src]
impl Endianity for LittleEndianfn is_big_endian(self) -> bool[src]
fn is_big_endian(self) -> boolReturn true for big endian byte order.
fn is_little_endian(self) -> bool[src]
fn is_little_endian(self) -> boolReturn true for little endian byte order.
fn read_u16(self, buf: &[u8]) -> u16[src]
fn read_u16(self, buf: &[u8]) -> u16Reads an unsigned 16 bit integer from buf. Read more
fn read_u32(self, buf: &[u8]) -> u32[src]
fn read_u32(self, buf: &[u8]) -> u32Reads an unsigned 32 bit integer from buf. Read more
fn read_u64(self, buf: &[u8]) -> u64[src]
fn read_u64(self, buf: &[u8]) -> u64Reads an unsigned 64 bit integer from buf. Read more
fn read_i16(self, buf: &[u8]) -> i16[src]
fn read_i16(self, buf: &[u8]) -> i16Reads a signed 16 bit integer from buf. Read more
fn read_i32(self, buf: &[u8]) -> i32[src]
fn read_i32(self, buf: &[u8]) -> i32Reads a signed 32 bit integer from buf. Read more
fn read_i64(self, buf: &[u8]) -> i64[src]
fn read_i64(self, buf: &[u8]) -> i64Reads a signed 64 bit integer from buf. Read more
fn read_f32(self, buf: &[u8]) -> f32[src]
fn read_f32(self, buf: &[u8]) -> f32Reads a 32 bit floating point number from buf. Read more
fn read_f64(self, buf: &[u8]) -> f64[src]
fn read_f64(self, buf: &[u8]) -> f64Reads a 32 bit floating point number from buf. Read more
fn write_u64(self, buf: &mut [u8], n: u64)[src]
fn write_u64(self, buf: &mut [u8], n: u64)Writes an unsigned 64 bit integer n to buf. Read more
Auto Trait Implementations
impl Send for LittleEndian
impl Send for LittleEndianimpl Sync for LittleEndian
impl Sync for LittleEndian