Enum embedrs_bytes::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.

Examples

Write and read u32 numbers in big endian order:

use byteorder::{ByteOrder, BigEndian};

let mut buf = [0; 4];
BigEndian::write_u32(&mut buf, 1_000_000);
assert_eq!(1_000_000, BigEndian::read_u32(&buf));

Trait Implementations

impl Ord for BigEndian
[src]

[src]

impl Copy for BigEndian
[src]

impl Hash for BigEndian
[src]

[src]

impl Clone for BigEndian
[src]

[src]

impl Eq for BigEndian
[src]

impl PartialEq<BigEndian> for BigEndian
[src]

[src]

impl Debug for BigEndian
[src]

[src]

Formats the value using the given formatter.

impl ByteOrder for BigEndian
[src]

[src]

Reads an unsigned 16 bit integer from buf. Read more

[src]

Reads an unsigned 32 bit integer from buf. Read more

[src]

Reads an unsigned 64 bit integer from buf. Read more

[src]

Reads an unsigned n-bytes integer from buf. Read more

[src]

Writes an unsigned 16 bit integer n to buf. Read more

[src]

Writes an unsigned 32 bit integer n to buf. Read more

[src]

Writes an unsigned 64 bit integer n to buf. Read more

[src]

Writes an unsigned integer n to buf using only nbytes. Read more

[src]

Reads unsigned 16 bit integers from src into dst. Read more

[src]

Reads unsigned 32 bit integers from src into dst. Read more

[src]

Reads unsigned 64 bit integers from src into dst. Read more

[src]

Writes unsigned 16 bit integers from src into dst. Read more

[src]

Writes unsigned 32 bit integers from src into dst. Read more

[src]

Writes unsigned 64 bit integers from src into dst. Read more

[src]

Converts the given slice of unsigned 16 bit integers to a particular endianness. Read more

[src]

Converts the given slice of unsigned 32 bit integers to a particular endianness. Read more

[src]

Converts the given slice of unsigned 64 bit integers to a particular endianness. Read more

[src]

Converts the given slice of IEEE754 single-precision (4 bytes) floating point numbers to a particular endianness. Read more

[src]

Converts the given slice of IEEE754 double-precision (8 bytes) floating point numbers to a particular endianness. Read more

[src]

Reads an unsigned 24 bit integer from buf, stored in u32. Read more

[src]

Writes an unsigned 24 bit integer n to buf, stored in u32. Read more

[src]

Reads a signed 16 bit integer from buf. Read more

[src]

Reads a signed 24 bit integer from buf, stored in i32. Read more

[src]

Reads a signed 32 bit integer from buf. Read more

[src]

Reads a signed 64 bit integer from buf. Read more

[src]

Reads a signed n-bytes integer from buf. Read more

[src]

Reads a IEEE754 single-precision (4 bytes) floating point number. Read more

[src]

Reads a IEEE754 double-precision (8 bytes) floating point number. Read more

[src]

Writes a signed 16 bit integer n to buf. Read more

[src]

Writes a signed 24 bit integer n to buf, stored in i32. Read more

[src]

Writes a signed 32 bit integer n to buf. Read more

[src]

Writes a signed 64 bit integer n to buf. Read more

[src]

Writes a signed integer n to buf using only nbytes. Read more

[src]

Writes a IEEE754 single-precision (4 bytes) floating point number. Read more

[src]

Writes a IEEE754 double-precision (8 bytes) floating point number. Read more

[src]

Reads signed 16 bit integers from src to dst. Read more

[src]

Reads signed 32 bit integers from src into dst. Read more

[src]

Reads signed 64 bit integers from src into dst. Read more

[src]

Reads IEEE754 single-precision (4 bytes) floating point numbers from src into dst. Read more

[src]

Reads IEEE754 single-precision (4 bytes) floating point numbers from src into dst. Read more

[src]

Writes signed 16 bit integers from src into dst. Read more

[src]

Writes signed 32 bit integers from src into dst. Read more

[src]

Writes signed 64 bit integers from src into dst. Read more

[src]

Writes IEEE754 single-precision (4 bytes) floating point numbers from src into dst. Read more

[src]

Writes IEEE754 double-precision (8 bytes) floating point numbers from src into dst. Read more

[src]

Converts the given slice of signed 16 bit integers to a particular endianness. Read more

[src]

Converts the given slice of signed 32 bit integers to a particular endianness. Read more

[src]

Converts the given slice of signed 64 bit integers to a particular endianness. Read more

impl Default for BigEndian
[src]

impl PartialOrd<BigEndian> for BigEndian
[src]

[src]