Type Alias zerocopy::byteorder::little_endian::U128
source · pub type U128 = U128<LittleEndian>;
Expand description
A 128-bit unsigned integer stored in little-endian byte order.
Aliased Type§
struct U128(/* private fields */);
Implementations
source§impl<O> U128<O>
impl<O> U128<O>
sourcepub const ZERO: U128<O> = _
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.
sourcepub const MAX_VALUE: U128<O> = _
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.
sourcepub const fn from_bytes(bytes: [u8; 16]) -> U128<O>
pub const fn from_bytes(bytes: [u8; 16]) -> U128<O>
Constructs a new value from bytes which are already in the
endianness O
.
source§impl<O: ByteOrder> U128<O>
impl<O: ByteOrder> U128<O>
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: ByteOrder> AddAssign for U128<O>
impl<O: ByteOrder> AddAssign for U128<O>
source§fn add_assign(&mut self, rhs: U128<O>)
fn add_assign(&mut self, rhs: U128<O>)
Performs the
+=
operation. Read moresource§impl<O> AsBytes for U128<O>
impl<O> AsBytes for U128<O>
source§impl<O: ByteOrder> BitAndAssign for U128<O>
impl<O: ByteOrder> BitAndAssign for U128<O>
source§fn bitand_assign(&mut self, rhs: U128<O>)
fn bitand_assign(&mut self, rhs: U128<O>)
Performs the
&=
operation. Read moresource§impl<O: ByteOrder> BitOrAssign for U128<O>
impl<O: ByteOrder> BitOrAssign for U128<O>
source§fn bitor_assign(&mut self, rhs: U128<O>)
fn bitor_assign(&mut self, rhs: U128<O>)
Performs the
|=
operation. Read moresource§impl<O: ByteOrder> BitXorAssign for U128<O>
impl<O: ByteOrder> BitXorAssign for U128<O>
source§fn bitxor_assign(&mut self, rhs: U128<O>)
fn bitxor_assign(&mut self, rhs: U128<O>)
Performs the
^=
operation. Read moresource§impl<O: ByteOrder> DivAssign for U128<O>
impl<O: ByteOrder> DivAssign for U128<O>
source§fn div_assign(&mut self, rhs: U128<O>)
fn div_assign(&mut self, rhs: U128<O>)
Performs the
/=
operation. Read moresource§impl<O> FromBytes for U128<O>
impl<O> FromBytes for U128<O>
source§fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
Interprets the prefix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read moresource§fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
Interprets the suffix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read moresource§fn mut_slice_from_prefix(
bytes: &mut [u8],
count: usize,
) -> Option<(&mut [Self], &mut [u8])>
fn mut_slice_from_prefix( bytes: &mut [u8], count: usize, ) -> Option<(&mut [Self], &mut [u8])>
Interprets the prefix of the given
bytes
as a &mut [Self]
with length
equal to count
without copying. Read moresource§fn mut_slice_from_suffix(
bytes: &mut [u8],
count: usize,
) -> Option<(&mut [u8], &mut [Self])>
fn mut_slice_from_suffix( bytes: &mut [u8], count: usize, ) -> Option<(&mut [u8], &mut [Self])>
Interprets the suffix of the given
bytes
as a &mut [Self]
with length
equal to count
without copying. Read moresource§impl<O> FromZeroes for U128<O>
impl<O> FromZeroes for U128<O>
source§impl<O: ByteOrder> MulAssign for U128<O>
impl<O: ByteOrder> MulAssign for U128<O>
source§fn mul_assign(&mut self, rhs: U128<O>)
fn mul_assign(&mut self, rhs: U128<O>)
Performs the
*=
operation. Read moresource§impl<O: ByteOrder> PartialEq<[u8; 16]> for U128<O>
impl<O: ByteOrder> PartialEq<[u8; 16]> for U128<O>
source§impl<O: PartialEq> PartialEq for U128<O>
impl<O: PartialEq> PartialEq for U128<O>
source§impl<O: ByteOrder> RemAssign for U128<O>
impl<O: ByteOrder> RemAssign for U128<O>
source§fn rem_assign(&mut self, rhs: U128<O>)
fn rem_assign(&mut self, rhs: U128<O>)
Performs the
%=
operation. Read moresource§impl<O: ByteOrder> ShlAssign for U128<O>
impl<O: ByteOrder> ShlAssign for U128<O>
source§fn shl_assign(&mut self, rhs: U128<O>)
fn shl_assign(&mut self, rhs: U128<O>)
Performs the
<<=
operation. Read moresource§impl<O: ByteOrder> ShrAssign for U128<O>
impl<O: ByteOrder> ShrAssign for U128<O>
source§fn shr_assign(&mut self, rhs: U128<O>)
fn shr_assign(&mut self, rhs: U128<O>)
Performs the
>>=
operation. Read moresource§impl<O: ByteOrder> SubAssign for U128<O>
impl<O: ByteOrder> SubAssign for U128<O>
source§fn sub_assign(&mut self, rhs: U128<O>)
fn sub_assign(&mut self, rhs: U128<O>)
Performs the
-=
operation. Read more