Struct zerocopy::byteorder::U128

source ·
pub struct U128<O: ByteOrder>(/* private fields */);
Expand description

A 128-bit unsigned integer stored in O byte order.

U128 is like the native u128 type with two major differences: First, it has no alignment requirement (its alignment is 1). Second, the endianness of its memory layout is given by the type parameter O.

A U128 can be constructed using the new method, and its contained value can be obtained as a native u128 using the get method, or updated in place with the set method. In all cases, if the endianness O is not the same as the endianness of the current platform, an endianness swap will be performed in order to uphold the invariants that a) the layout of U128 has endianness O and that, b) the layout of u128 has the platform’s native endianness.

U128 implements FromBytes, AsBytes, and Unaligned, making it useful for parsing and serialization. See the module documentation for an example of how it can be used for parsing UDP packets.

Implementations§

source§

impl<O: ByteOrder> U128<O>

source

pub const ZERO: U128<O> = _

The value zero.

This constant should be preferred to constructing a new value using new, as new may perform an endianness swap depending on the endianness and platform.

source

pub const MAX_VALUE: U128<O> = _

The maximum value.

This constant should be preferred to constructing a new value using new, as new may perform an endianness swap depending on the endianness O and the endianness of the platform.

source

pub fn new(n: u128) -> U128<O>

Constructs a new value, possibly performing an endianness swap to guarantee that the returned value has endianness O.

source

pub fn get(self) -> u128

Returns the value as a primitive type, possibly performing an endianness swap to guarantee that the return value has the endianness of the native platform.

source

pub fn set(&mut self, n: u128)

Updates the value in place as a primitive type, possibly performing an endianness swap to guarantee that the stored value has the endianness O.

Trait Implementations§

source§

impl<O: ByteOrder> AsBytes for U128<O>

source§

fn as_bytes(&self) -> &[u8]

Get the bytes of this value. Read more
source§

fn as_bytes_mut(&mut self) -> &mut [u8]
where Self: FromBytes,

Get the bytes of this value mutably. Read more
source§

impl<O: ByteOrder> AsMut<[u8; 16]> for U128<O>

source§

fn as_mut(&mut self) -> &mut [u8; 16]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<O: ByteOrder> AsRef<[u8; 16]> for U128<O>

source§

fn as_ref(&self) -> &[u8; 16]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<O: ByteOrder> Binary for U128<O>

source§

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

Formats the value using the given formatter.
source§

impl<O: Clone + ByteOrder> Clone for U128<O>

source§

fn clone(&self) -> U128<O>

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<O: ByteOrder> Debug for U128<O>

source§

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

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

impl<O: Default + ByteOrder> Default for U128<O>

source§

fn default() -> U128<O>

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

impl<O: ByteOrder> Display for U128<O>

source§

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

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

impl<O: ByteOrder> From<[u8; 16]> for U128<O>

source§

fn from(bytes: [u8; 16]) -> U128<O>

Converts to this type from the input type.
source§

impl<O: ByteOrder> From<U128<O>> for [u8; 16]

source§

fn from(x: U128<O>) -> [u8; 16]

Converts to this type from the input type.
source§

impl<O: Hash + ByteOrder> Hash for U128<O>

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<O: ByteOrder> LowerHex for U128<O>

source§

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

Formats the value using the given formatter.
source§

impl<O: ByteOrder> Octal for U128<O>

source§

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

Formats the value using the given formatter.
source§

impl<O: ByteOrder> PartialEq<[u8; 16]> for U128<O>

source§

fn eq(&self, other: &[u8; 16]) -> 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<O: ByteOrder> PartialEq<U128<O>> for [u8; 16]

source§

fn eq(&self, other: &U128<O>) -> 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<O: PartialEq + ByteOrder> PartialEq for U128<O>

source§

fn eq(&self, other: &U128<O>) -> 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<O: ByteOrder> UpperHex for U128<O>

source§

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

Formats the value using the given formatter.
source§

impl<O: Copy + ByteOrder> Copy for U128<O>

source§

impl<O: Eq + ByteOrder> Eq for U128<O>

source§

impl<O: ByteOrder> FromBytes for U128<O>

source§

impl<O: ByteOrder> StructuralEq for U128<O>

source§

impl<O: ByteOrder> StructuralPartialEq for U128<O>

source§

impl<O: ByteOrder> Unaligned for U128<O>

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for U128<O>
where O: RefUnwindSafe,

§

impl<O> Send for U128<O>
where O: Send,

§

impl<O> Sync for U128<O>
where O: Sync,

§

impl<O> Unpin for U128<O>
where O: Unpin,

§

impl<O> UnwindSafe for U128<O>
where O: 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> 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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.