Struct StaticEndianness

Source
pub struct StaticEndianness<E>(/* private fields */);
Expand description

A data type representing a byte order known in compile time. Unlike the types provided in byteorder, this type can be constructed.

The parameter type E can be one of either byteorder::BigEndian or byteorder::LittleEndian.

Implementations§

Source§

impl<E> StaticEndianness<E>

Source

pub fn new() -> Self

Constructor for a static endianness.

Source§

impl StaticEndianness<NativeEndian>

Source

pub fn native() -> Self

Constructor for native endianness.

Trait Implementations§

Source§

impl<E: Clone> Clone for StaticEndianness<E>

Source§

fn clone(&self) -> StaticEndianness<E>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<E: Debug> Debug for StaticEndianness<E>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<E> Default for StaticEndianness<E>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<E> Endian for StaticEndianness<E>
where E: HasOpposite + StaticNative + ByteOrder,

Source§

type Opposite = StaticEndianness<<E as HasOpposite>::Opposite>

A type which can represent a byte order that is opposite to this one.
Source§

fn into_opposite(self) -> Self::Opposite

Converts the receiver into its opposite.
Source§

fn is_native(self) -> bool

Checks whether this value represents the system’s native endianness.
Source§

fn read_i16<S>(self, src: S) -> IoResult<i16>
where S: Read,

Reads a signed 16 bit integer from the given reader. Read more
Source§

fn read_u16<S>(self, src: S) -> IoResult<u16>
where S: Read,

Reads an unsigned 16 bit integer from the given reader. Read more
Source§

fn read_i32<S>(self, src: S) -> IoResult<i32>
where S: Read,

Reads a signed 32 bit integer from the given reader. Read more
Source§

fn read_u32<S>(self, src: S) -> IoResult<u32>
where S: Read,

Reads an unsigned 32 bit integer from the given reader. Read more
Source§

fn read_i64<S>(self, src: S) -> IoResult<i64>
where S: Read,

Reads a signed 64 bit integer from the given reader. Read more
Source§

fn read_u64<S>(self, src: S) -> IoResult<u64>
where S: Read,

Reads an unsigned 64 bit integer from the given reader. Read more
Source§

fn read_i128<S>(self, src: S) -> IoResult<i128>
where S: Read,

Reads a signed 128 bit integer from the given reader. Read more
Source§

fn read_u128<S>(self, src: S) -> IoResult<u128>
where S: Read,

Reads an unsigned 128 bit integer from the given reader. Read more
Source§

fn read_f32<S>(self, src: S) -> IoResult<f32>
where S: Read,

Reads a IEEE754 single-precision (4 bytes) floating point number from the given reader. Read more
Source§

fn read_f64<S>(self, src: S) -> IoResult<f64>
where S: Read,

Reads a IEEE754 double-precision (8 bytes) floating point number from the given reader. Read more
Source§

fn read_i16_into<S>(self, src: S, dst: &mut [i16]) -> IoResult<()>
where S: Read,

Reads a sequence of signed 16 bit integers from the given reader. Read more
Source§

fn read_u16_into<S>(self, src: S, dst: &mut [u16]) -> IoResult<()>
where S: Read,

Reads a sequence of unsigned 16 bit integers from the given reader. Read more
Source§

fn read_i32_into<S>(self, src: S, dst: &mut [i32]) -> IoResult<()>
where S: Read,

Reads a sequence of signed 32 bit integers from the given reader. Read more
Source§

fn read_u32_into<S>(self, src: S, dst: &mut [u32]) -> IoResult<()>
where S: Read,

Reads a sequence of unsigned 32 bit integers from the given reader. Read more
Source§

fn read_i64_into<S>(self, src: S, dst: &mut [i64]) -> IoResult<()>
where S: Read,

Reads a sequence of signed 64 bit integers from the given reader. Read more
Source§

fn read_u64_into<S>(self, src: S, dst: &mut [u64]) -> IoResult<()>
where S: Read,

Reads a sequence of unsigned 64 bit integers from the given reader. Read more
Source§

fn read_i128_into<S>(self, src: S, dst: &mut [i128]) -> IoResult<()>
where S: Read,

Reads a sequence of signed 128 bit integers from the given reader. Read more
Source§

fn read_u128_into<S>(self, src: S, dst: &mut [u128]) -> IoResult<()>
where S: Read,

Reads a sequence of unsigned 128 bit integers from the given reader. Read more
Source§

fn read_f32_into<S>(self, src: S, dst: &mut [f32]) -> IoResult<()>
where S: Read,

Reads a sequence of IEEE754 single-precision (4 bytes) floating point numbers from the given reader. Read more
Source§

fn read_f64_into<S>(self, src: S, dst: &mut [f64]) -> IoResult<()>
where S: Read,

Reads a sequence of IEEE754 double-precision (8 bytes) floating point numbers from the given reader. Read more
Source§

fn write_i16<W>(self, src: W, x: i16) -> IoResult<()>
where W: Write,

Writes a signed 16 bit integer to the given writer. Read more
Source§

fn write_u16<W>(self, src: W, x: u16) -> IoResult<()>
where W: Write,

Writes an unsigned 16 bit integer to the given writer. Read more
Source§

fn write_i32<W>(self, src: W, x: i32) -> IoResult<()>
where W: Write,

Writes a signed 32 bit integer to the given writer. Read more
Source§

fn write_u32<W>(self, src: W, x: u32) -> IoResult<()>
where W: Write,

Writes an unsigned 32 bit integer to the given writer. Read more
Source§

fn write_i64<W>(self, src: W, x: i64) -> IoResult<()>
where W: Write,

Writes a signed 64 bit integer to the given writer. Read more
Source§

fn write_u64<W>(self, src: W, x: u64) -> IoResult<()>
where W: Write,

Writes an unsigned 64 bit integer to the given writer. Read more
Source§

fn write_i128<W>(self, src: W, x: i128) -> IoResult<()>
where W: Write,

Writes a signed 128 bit integer to the given writer. Read more
Source§

fn write_u128<W>(self, src: W, x: u128) -> IoResult<()>
where W: Write,

Writes an unsigned 128 bit integer to the given writer. Read more
Source§

fn write_f32<W>(self, src: W, x: f32) -> IoResult<()>
where W: Write,

Writes a IEEE754 single-precision (4 bytes) floating point number to the given writer. Read more
Source§

fn write_f64<W>(self, src: W, x: f64) -> IoResult<()>
where W: Write,

Writes a IEEE754 double-precision (8 bytes) floating point number to the given writer. Read more
Source§

impl From<StaticEndianness<BigEndian>> for Endianness

Source§

fn from(_: StaticEndianness<BigEndian>) -> Self

Converts to this type from the input type.
Source§

impl From<StaticEndianness<LittleEndian>> for Endianness

Source§

fn from(_: StaticEndianness<LittleEndian>) -> Self

Converts to this type from the input type.
Source§

impl<E: Hash> Hash for StaticEndianness<E>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<E: Ord> Ord for StaticEndianness<E>

Source§

fn cmp(&self, other: &StaticEndianness<E>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq<Endianness> for StaticEndianness<BigEndian>

Source§

fn eq(&self, e: &Endianness) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Endianness> for StaticEndianness<LittleEndian>

Source§

fn eq(&self, e: &Endianness) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<StaticEndianness<BigEndian>> for Endianness

Source§

fn eq(&self, _: &StaticEndianness<BigEndian>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<StaticEndianness<BigEndian>> for StaticEndianness<LittleEndian>

Source§

fn eq(&self, _: &StaticEndianness<BigEndian>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<StaticEndianness<LittleEndian>> for Endianness

Source§

fn eq(&self, _: &StaticEndianness<LittleEndian>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<StaticEndianness<LittleEndian>> for StaticEndianness<BigEndian>

Source§

fn eq(&self, _: &StaticEndianness<LittleEndian>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<E: PartialEq> PartialEq for StaticEndianness<E>

Source§

fn eq(&self, other: &StaticEndianness<E>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<E: PartialOrd> PartialOrd for StaticEndianness<E>

Source§

fn partial_cmp(&self, other: &StaticEndianness<E>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<E: Copy> Copy for StaticEndianness<E>

Source§

impl<E: Eq> Eq for StaticEndianness<E>

Source§

impl<E> StructuralPartialEq for StaticEndianness<E>

Auto Trait Implementations§

§

impl<E> Freeze for StaticEndianness<E>

§

impl<E> RefUnwindSafe for StaticEndianness<E>
where E: RefUnwindSafe,

§

impl<E> Send for StaticEndianness<E>
where E: Send,

§

impl<E> Sync for StaticEndianness<E>
where E: Sync,

§

impl<E> Unpin for StaticEndianness<E>
where E: Unpin,

§

impl<E> UnwindSafe for StaticEndianness<E>
where E: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.