pub struct U128<O>(_, _)
where
O: ByteOrder;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> U128<O>where
O: ByteOrder,
impl<O> U128<O>where O: ByteOrder,
sourcepub const ZERO: U128<O> = U128([0u8; 16], PhantomData)
pub const ZERO: U128<O> = U128([0u8; 16], PhantomData)
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.
sourcepub const MAX_VALUE: U128<O> = U128([255u8; 16], PhantomData)
pub const MAX_VALUE: U128<O> = U128([255u8; 16], PhantomData)
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.
sourcepub fn new(n: u128) -> U128<O>
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.
Trait Implementations§
source§impl<O> AsBytes for U128<O>where
O: ByteOrder,
impl<O> AsBytes for U128<O>where O: ByteOrder,
source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘwhere Self: FromBytes,
source§fn write_to_prefix<B>(&self, bytes: B) -> Option<()>where
B: ByteSliceMut,
fn write_to_prefix<B>(&self, bytes: B) -> Option<()>where B: ByteSliceMut,
source§fn write_to_suffix<B>(&self, bytes: B) -> Option<()>where
B: ByteSliceMut,
fn write_to_suffix<B>(&self, bytes: B) -> Option<()>where B: ByteSliceMut,
source§impl<O> FromBytes for U128<O>where
O: ByteOrder,
PhantomData<O>: FromBytes,
impl<O> FromBytes for U128<O>where O: ByteOrder, PhantomData<O>: FromBytes,
source§fn new_zeroed() -> Selfwhere
Self: Sized,
fn new_zeroed() -> Selfwhere Self: Sized,
Self from zeroed bytes.