Struct endian_type::LittleEndian [] [src]

pub struct LittleEndian<T>(_);

Little endian byte order

Least significant byte first

Methods

impl<T> LittleEndian<T> where
    T: Sized + Copy
[src]

Trait Implementations

impl<T: Copy> Copy for LittleEndian<T>
[src]

impl<T: Clone> Clone for LittleEndian<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for LittleEndian<T>
[src]

Formats the value using the given formatter.

impl<T: Eq> Eq for LittleEndian<T>
[src]

impl<T: PartialEq> PartialEq for LittleEndian<T>
[src]

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

This method tests for !=.

impl<T: Hash> Hash for LittleEndian<T>
[src]

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

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

impl<T: Ord> Ord for LittleEndian<T>
[src]

This method returns an Ordering between self and other. Read more

impl<T: PartialOrd> PartialOrd for LittleEndian<T>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<T> Endian<T> for LittleEndian<T>
[src]

impl<T> BitAnd for LittleEndian<T> where
    T: BitAnd
[src]

The resulting type after applying the & operator

The method for the & operator

impl<T> BitOr for LittleEndian<T> where
    T: BitOr
[src]

The resulting type after applying the | operator

The method for the | operator

impl<T> BitXor for LittleEndian<T> where
    T: BitXor
[src]

The resulting type after applying the ^ operator

The method for the ^ operator

impl Into<u16> for LittleEndian<u16>
[src]

Performs the conversion.

impl From<u16> for LittleEndian<u16>
[src]

Performs the conversion.

impl From<BigEndian<u16>> for LittleEndian<u16>
[src]

Performs the conversion.

impl Into<u32> for LittleEndian<u32>
[src]

Performs the conversion.

impl From<u32> for LittleEndian<u32>
[src]

Performs the conversion.

impl From<BigEndian<u32>> for LittleEndian<u32>
[src]

Performs the conversion.

impl Into<u64> for LittleEndian<u64>
[src]

Performs the conversion.

impl From<u64> for LittleEndian<u64>
[src]

Performs the conversion.

impl From<BigEndian<u64>> for LittleEndian<u64>
[src]

Performs the conversion.

impl Into<usize> for LittleEndian<usize>
[src]

Performs the conversion.

impl From<usize> for LittleEndian<usize>
[src]

Performs the conversion.

impl From<BigEndian<usize>> for LittleEndian<usize>
[src]

Performs the conversion.

impl Into<i16> for LittleEndian<i16>
[src]

Performs the conversion.

impl From<i16> for LittleEndian<i16>
[src]

Performs the conversion.

impl From<BigEndian<i16>> for LittleEndian<i16>
[src]

Performs the conversion.

impl Into<i32> for LittleEndian<i32>
[src]

Performs the conversion.

impl From<i32> for LittleEndian<i32>
[src]

Performs the conversion.

impl From<BigEndian<i32>> for LittleEndian<i32>
[src]

Performs the conversion.

impl Into<i64> for LittleEndian<i64>
[src]

Performs the conversion.

impl From<i64> for LittleEndian<i64>
[src]

Performs the conversion.

impl From<BigEndian<i64>> for LittleEndian<i64>
[src]

Performs the conversion.

impl Into<isize> for LittleEndian<isize>
[src]

Performs the conversion.

impl From<isize> for LittleEndian<isize>
[src]

Performs the conversion.

impl From<BigEndian<isize>> for LittleEndian<isize>
[src]

Performs the conversion.