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

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

Required methods

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

Implementations on Foreign Types

Implementors