Type Alias object::endian::U32

source ·
pub type U32<E> = U32Bytes<E>;
Expand description

A u32 value with an externally specified endianness of type E.

Aliased Type§

struct U32<E>([u8; 4], PhantomData<E>);

Fields§

§0: [u8; 4]§1: PhantomData<E>

Implementations§

source§

impl<E: Endian> U32Bytes<E>

source

pub fn from_bytes(n: [u8; 4]) -> Self

Construct a new value given bytes that already have the required endianness.

source

pub fn new(e: E, n: u32) -> Self

Construct a new value given a native endian value.

source

pub fn get(self, e: E) -> u32

Return the value as a native endian value.

source

pub fn set(&mut self, e: E, n: u32)

Set the value given a native endian value.

Trait Implementations§

source§

impl<E: Clone + Endian> Clone for U32Bytes<E>

source§

fn clone(&self) -> U32Bytes<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: Endian> Debug for U32Bytes<E>

source§

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

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

impl<E: Default + Endian> Default for U32Bytes<E>

source§

fn default() -> U32Bytes<E>

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

impl<E: Hash + Endian> Hash for U32Bytes<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 + Endian> Ord for U32Bytes<E>

source§

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

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

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

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

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

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

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

impl<E: PartialEq + Endian> PartialEq<U32Bytes<E>> for U32Bytes<E>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<E: PartialOrd + Endian> PartialOrd<U32Bytes<E>> for U32Bytes<E>

source§

fn partial_cmp(&self, other: &U32Bytes<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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<E: Copy + Endian> Copy for U32Bytes<E>

source§

impl<E: Eq + Endian> Eq for U32Bytes<E>

source§

impl<E: Endian> Pod for U32Bytes<E>

source§

impl<E: Endian> StructuralEq for U32Bytes<E>

source§

impl<E: Endian> StructuralPartialEq for U32Bytes<E>