Enum byteorder::BigEndian
[-] [+]
[src]
pub enum BigEndian {}Defines big-endian serialization.
Note that this type has no value constructor. It is used purely at the type level.
pub enum BigEndian {}Defines big-endian serialization.
Note that this type has no value constructor. It is used purely at the type level.
impl ByteOrder for BigEndianfn read_u16(buf: &[u8]) -> u16fn read_u32(buf: &[u8]) -> u32fn read_u64(buf: &[u8]) -> u64fn read_uint(buf: &[u8], nbytes: usize) -> u64fn write_u16(buf: &mut [u8], n: u16)fn write_u32(buf: &mut [u8], n: u32)fn write_u64(buf: &mut [u8], n: u64)fn read_i16(buf: &[u8]) -> i16fn read_i32(buf: &[u8]) -> i32fn read_i64(buf: &[u8]) -> i64fn read_int(buf: &[u8], nbytes: usize) -> i64fn read_f32(buf: &[u8]) -> f32fn read_f64(buf: &[u8]) -> f64fn write_i16(buf: &mut [u8], n: i16)fn write_i32(buf: &mut [u8], n: i32)fn write_i64(buf: &mut [u8], n: i64)fn write_f32(buf: &mut [u8], n: f32)fn write_f64(buf: &mut [u8], n: f64)
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct, enum,
trait, typedef (or
tdef).