[][src]Struct endio::LittleEndian

pub struct LittleEndian;

Only necessary for custom (de-)serializations.

You can use this as a type parameter in your implementation to write code specific to little endian.

Trait Implementations

impl Endianness for LittleEndian[src]

impl<R: Read> Deserialize<LittleEndian, R> for u16[src]

impl<R: Read> Deserialize<LittleEndian, R> for u32[src]

impl<R: Read> Deserialize<LittleEndian, R> for u64[src]

impl<R: Read> Deserialize<LittleEndian, R> for u128[src]

impl<R: Read> Deserialize<LittleEndian, R> for i16[src]

impl<R: Read> Deserialize<LittleEndian, R> for i32[src]

impl<R: Read> Deserialize<LittleEndian, R> for i64[src]

impl<R: Read> Deserialize<LittleEndian, R> for i128[src]

impl<W: Write> Serialize<LittleEndian, W> for u16[src]

impl<W: Write> Serialize<LittleEndian, W> for u32[src]

impl<W: Write> Serialize<LittleEndian, W> for u64[src]

impl<W: Write> Serialize<LittleEndian, W> for u128[src]

impl<W: Write> Serialize<LittleEndian, W> for i16[src]

impl<W: Write> Serialize<LittleEndian, W> for i32[src]

impl<W: Write> Serialize<LittleEndian, W> for i64[src]

impl<W: Write> Serialize<LittleEndian, W> for i128[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.