pub trait FromBytesLE: Sized {
    fn from_bytes_le(src: &[u8]) -> Result<(usize, Self), Error>;
}
Expand description

Deserialize a sequence of bytes into a type in little endian.

Required methods

Read data from src in order to create an instance Self in little endian. The usize in the Result is the number of bytes read from src.

Implementations on Foreign Types

Implementors