[][src]Struct byteordered::ByteOrdered

pub struct ByteOrdered<T, E> { /* fields omitted */ }

Wrapper type for a reader or writer with an assumed byte order.

More details can be found at the crate level documentation.

Methods

impl<T> ByteOrdered<T, StaticEndianness<LittleEndian>>[src]

pub fn le(inner: T) -> Self[src]

Obtains a new reader or writer that assumes data in little endian.

pub fn endianness(&self) -> Endianness[src]

Retrieves the runtime byte order assumed by this wrapper.

impl<T> ByteOrdered<T, StaticEndianness<BigEndian>>[src]

pub fn be(inner: T) -> Self[src]

Obtains a new reader or writer that assumes data in big endian.

pub fn endianness(&self) -> Endianness[src]

Retrieves the runtime byte order assumed by this wrapper.

impl<T> ByteOrdered<T, StaticEndianness<NativeEndian>>[src]

pub fn native(inner: T) -> Self[src]

Obtains a new reader or writer that assumes data in the system's native endianness. While this method might sounds a bit pointless, it enables easier byte order changes through method chaining).

impl<T> ByteOrdered<T, StaticEndianness<NetworkEndian>>[src]

pub fn network(inner: T) -> Self[src]

Obtains a new reader or writer that assumes network order.

impl<T> ByteOrdered<T, Endianness>[src]

pub fn runtime(inner: T, endianness: Endianness) -> Self[src]

Creates a new reader or writer that assumes data in the given byte order known at run-time.

Although it is equivalent to ByteOrdered::new, this function leaves a code signal that subsequent calls depend on conditions resolved at run-time. If you know the data's endianness in compile time, the other constructors are preferred (e.g. new, le or be), so as to avoid the overhead of dynamic dispatching.

pub fn endianness(&self) -> Endianness[src]

Retrieves the runtime byte order assumed by this wrapper.

impl<T, E> ByteOrdered<T, E> where
    E: Endian
[src]

pub fn new(inner: T, endianness: E) -> Self[src]

Creates a new reader or writer that assumes data in the given byte order. This flexible constructor admits any kind of byte order (static and dynamic).

Note: The other constructors (le, be, native, and runtime) are more recommended because they are easier to use and leave a better signal of whether the endianness is known at compile time or at run time. For example, if you pass a value literal of type Endianness (such as Endianness::Little), the program will perform dynamic dispatching in spite of the fixed byte order. The use of this method is more appropriate when constructing functions which are generic over the endianness type.

pub fn into_inner(self) -> T[src]

Recovers the inner reader or writer from this wrapper. Information about the assumed byte order is discarded.

pub fn inner_mut(&mut self) -> &mut T[src]

Obtains an exclusive mutable reference to the inner reader or writer in this wrapper. Information about the assumed byte order is ignored until the reference is dropped.

Important traits for ByteOrdered<R, E>
pub fn as_mut(&mut self) -> ByteOrdered<&mut T, E> where
    E: Copy
[src]

Converts from a ByteOrdered<T, E> to ByteOrdered<&mut T, E>.

pub fn into_parts(self) -> (T, E)[src]

Disbands a ByteOrder into its parts.

Important traits for ByteOrdered<R, E>
pub fn into_endianness<E2: Endian>(self, endianness: E2) -> ByteOrdered<T, E2>[src]

Changes the assumed byte order of the reader or writer.

Important traits for ByteOrdered<R, E>
pub fn into_le(self) -> ByteOrdered<T, StaticEndianness<LittleEndian>>[src]

Changes the assumed byte order of the reader or writer to little endian.

Important traits for ByteOrdered<R, E>
pub fn into_be(self) -> ByteOrdered<T, StaticEndianness<BigEndian>>[src]

Changes the assumed byte order of the reader or writer to little endian.

Important traits for ByteOrdered<R, E>
pub fn into_native(self) -> ByteOrdered<T, StaticEndianness<NativeEndian>>[src]

Changes the assumed byte order of the reader or writer to the system's native endianness.

Important traits for ByteOrdered<R, E>
pub fn into_opposite(self) -> ByteOrdered<T, E::Opposite> where
    E: Endian
[src]

Converts the assumed endianness to the opposite of the current order.

pub fn is_native(&self) -> bool where
    E: Endian
[src]

Checks whether the assumed endianness is the system's native byte order.

impl<R, E> ByteOrdered<R, E> where
    R: ReadBytesExt,
    E: Endian
[src]

pub fn read_i8(&mut self) -> IoResult<i8>[src]

Reads a signed 8 bit integer from the underlying reader.

This method does exactly the same thing as read_i8 in byteorder::ReadBytesExt. It is included so that users do not have to import the former trait.

Errors

This method returns the same errors as Read::read_exact.

Examples

Read unsigned 8 bit integers from a Read:

use std::io::Cursor;
use byteordered::ByteOrdered;

let mut rdr = ByteOrdered::native(Cursor::new(vec![2, 5]));
assert_eq!(2, rdr.read_i8().unwrap());
assert_eq!(5, rdr.read_i8().unwrap());

pub fn read_u8(&mut self) -> IoResult<u8>[src]

Reads an unsigned 8 bit integer from the underlying reader.

This method does exactly the same thing as read_u8 in byteorder::ReadBytesExt. It is included so that users do not have to import the former trait.

Errors

This method returns the same errors as Read::read_exact.

Examples

Read unsigned 8 bit integers from a Read:

use std::io::Cursor;
use byteordered::ByteOrdered;

let mut rdr = ByteOrdered::native(Cursor::new(vec![2, 5]));
assert_eq!(2, rdr.read_u8().unwrap());
assert_eq!(5, rdr.read_u8().unwrap());

pub fn read_i16(&mut self) -> IoResult<i16>[src]

Reads a signed 16 bit integer from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

Examples

Read signed 16 bit big-endian integers from a Read:

use std::io::Cursor;
use byteordered::ByteOrdered;

let mut rdr = ByteOrdered::be(Cursor::new(vec![0x00, 0xc1, 0xff, 0x7c]));
assert_eq!(193, rdr.read_i16().unwrap());
assert_eq!(-132, rdr.read_i16().unwrap());

pub fn read_u16(&mut self) -> IoResult<u16>[src]

Reads an unsigned 16 bit integer from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

pub fn read_i32(&mut self) -> IoResult<i32>[src]

Reads a signed 32 bit integer from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

pub fn read_u32(&mut self) -> IoResult<u32>[src]

Reads an unsigned 32 bit integer from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

pub fn read_i64(&mut self) -> IoResult<i64>[src]

Reads a signed 64 bit integer from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

pub fn read_u64(&mut self) -> IoResult<u64>[src]

Reads an unsigned 16 bit integer from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

pub fn read_i128(&mut self) -> IoResult<i128>[src]

Reads a signed 128 bit integer from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

pub fn read_u128(&mut self) -> IoResult<u128>[src]

Reads an unsigned 16 bit integer from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

pub fn read_f32(&mut self) -> IoResult<f32>[src]

Reads a IEEE754 single-precision (4 bytes) floating point number from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

pub fn read_f64(&mut self) -> IoResult<f64>[src]

Reads a IEEE754 double-precision (8 bytes) floating point number from the underlying reader.

Errors

This method returns the same errors as Read::read_exact.

impl<W, E> ByteOrdered<W, E> where
    W: WriteBytesExt,
    E: Endian
[src]

pub fn write_i8(&mut self, x: i8) -> IoResult<()>[src]

Writes a signed 8 bit integer to the underlying writer.

Note that since this writes a single byte, no byte order conversions are used. It is included for completeness.

Errors

This method returns the same errors as Write::write_all.

pub fn write_u8(&mut self, x: u8) -> IoResult<()>[src]

Writes an unsigned 8 bit integer to the underlying writer.

Note that since this writes a single byte, no byte order conversions are used. It is included for completeness.

Errors

This method returns the same errors as Write::write_all.

pub fn write_i16(&mut self, x: i16) -> IoResult<()>[src]

Writes a signed 16 bit integer to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

Examples

Write signed 16 bit big-endian integers to a Write:

use byteordered::ByteOrdered;

let mut wtr = ByteOrdered::be(Vec::new());
wtr.write_i16(193).unwrap();
wtr.write_i16(-132).unwrap();
assert_eq!(wtr.into_inner(), b"\x00\xc1\xff\x7c");

pub fn write_u16(&mut self, x: u16) -> IoResult<()>[src]

Writes an unsigned 16 bit integer to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

pub fn write_i32(&mut self, x: i32) -> IoResult<()>[src]

Writes a signed 32 bit integer to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

pub fn write_u32(&mut self, x: u32) -> IoResult<()>[src]

Writes an unsigned 32 bit integer to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

pub fn write_i64(&mut self, x: i64) -> IoResult<()>[src]

Writes a signed 64 bit integer to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

pub fn write_u64(&mut self, x: u64) -> IoResult<()>[src]

Writes an unsigned 64 bit integer to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

pub fn write_i128(&mut self, x: i128) -> IoResult<()>[src]

Writes a signed 128 bit integer to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

pub fn write_u128(&mut self, x: u128) -> IoResult<()>[src]

Writes an unsigned 128 bit integer to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

pub fn write_f32(&mut self, x: f32) -> IoResult<()>[src]

Writes a IEEE754 single-precision (4 bytes) floating point number to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

pub fn write_f64(&mut self, x: f64) -> IoResult<()>[src]

Writes a IEEE754 double-precision (8 bytes) floating point number to the underlying writer.

Errors

This method returns the same errors as Write::write_all.

Trait Implementations

impl<T, E> From<(T, E)> for ByteOrdered<T, E>[src]

impl<T: Clone, E: Clone> Clone for ByteOrdered<T, E>[src]

impl<T: Debug, E: Debug> Debug for ByteOrdered<T, E>[src]

impl<R, E> Read for ByteOrdered<R, E> where
    R: Read
[src]

impl<W, E> Write for ByteOrdered<W, E> where
    W: Write
[src]

impl<T, E> BufRead for ByteOrdered<T, E> where
    T: BufRead
[src]

impl<T, E> Seek for ByteOrdered<T, E> where
    T: Seek
[src]

Auto Trait Implementations

impl<T, E> Send for ByteOrdered<T, E> where
    E: Send,
    T: Send

impl<T, E> Sync for ByteOrdered<T, E> where
    E: Sync,
    T: Sync

impl<T, E> Unpin for ByteOrdered<T, E> where
    E: Unpin,
    T: Unpin

impl<T, E> UnwindSafe for ByteOrdered<T, E> where
    E: UnwindSafe,
    T: UnwindSafe

impl<T, E> RefUnwindSafe for ByteOrdered<T, E> where
    E: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<R> ReadBytesExt for R where
    R: Read + ?Sized
[src]

impl<W> WriteBytesExt for W where
    W: Write + ?Sized
[src]