pub struct Usize<O>(/* private fields */);
Expand description
A word-sized unsigned integer stored in a given byte order.
Usize
is like the native usize
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
,
which can be any type which implements ByteOrder
. In particular, this refers
to BigEndian
, LittleEndian
, NativeEndian
, and NetworkEndian
.
A Usize
can be constructed using
the new
method, and its contained value can be obtained as a native
usize
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 Usize
has endianness O
and that, b) the layout of usize
has
the platform’s native endianness.
Usize
implements FromBytes
, IntoBytes
, 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> Usize<O>
impl<O> Usize<O>
Sourcepub const ZERO: Usize<O> = _
pub const ZERO: Usize<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: Usize<O> = _
pub const MAX_VALUE: Usize<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; 8]) -> Usize<O>
pub const fn from_bytes(bytes: [u8; 8]) -> Usize<O>
Constructs a new value from bytes which are already in O
byte
order.
Source§impl<O: ByteOrder> Usize<O>
impl<O: ByteOrder> Usize<O>
Sourcepub const fn new(n: usize) -> Usize<O>
pub const fn new(n: usize) -> Usize<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<Usize<O>> for usize
impl<O: ByteOrder> AddAssign<Usize<O>> for usize
Source§fn add_assign(&mut self, rhs: Usize<O>)
fn add_assign(&mut self, rhs: Usize<O>)
+=
operation. Read moreSource§impl<O: ByteOrder> AddAssign<usize> for Usize<O>
impl<O: ByteOrder> AddAssign<usize> for Usize<O>
Source§fn add_assign(&mut self, rhs: usize)
fn add_assign(&mut self, rhs: usize)
+=
operation. Read moreSource§impl<O: ByteOrder> AddAssign for Usize<O>
impl<O: ByteOrder> AddAssign for Usize<O>
Source§fn add_assign(&mut self, rhs: Usize<O>)
fn add_assign(&mut self, rhs: Usize<O>)
+=
operation. Read moreSource§impl<O: ByteOrder> BitAndAssign<Usize<O>> for usize
impl<O: ByteOrder> BitAndAssign<Usize<O>> for usize
Source§fn bitand_assign(&mut self, rhs: Usize<O>)
fn bitand_assign(&mut self, rhs: Usize<O>)
&=
operation. Read moreSource§impl<O: ByteOrder> BitAndAssign<usize> for Usize<O>
impl<O: ByteOrder> BitAndAssign<usize> for Usize<O>
Source§fn bitand_assign(&mut self, rhs: usize)
fn bitand_assign(&mut self, rhs: usize)
&=
operation. Read moreSource§impl<O: ByteOrder> BitAndAssign for Usize<O>
impl<O: ByteOrder> BitAndAssign for Usize<O>
Source§fn bitand_assign(&mut self, rhs: Usize<O>)
fn bitand_assign(&mut self, rhs: Usize<O>)
&=
operation. Read moreSource§impl<O: ByteOrder> BitOrAssign<Usize<O>> for usize
impl<O: ByteOrder> BitOrAssign<Usize<O>> for usize
Source§fn bitor_assign(&mut self, rhs: Usize<O>)
fn bitor_assign(&mut self, rhs: Usize<O>)
|=
operation. Read moreSource§impl<O: ByteOrder> BitOrAssign<usize> for Usize<O>
impl<O: ByteOrder> BitOrAssign<usize> for Usize<O>
Source§fn bitor_assign(&mut self, rhs: usize)
fn bitor_assign(&mut self, rhs: usize)
|=
operation. Read moreSource§impl<O: ByteOrder> BitOrAssign for Usize<O>
impl<O: ByteOrder> BitOrAssign for Usize<O>
Source§fn bitor_assign(&mut self, rhs: Usize<O>)
fn bitor_assign(&mut self, rhs: Usize<O>)
|=
operation. Read moreSource§impl<O: ByteOrder> BitXorAssign<Usize<O>> for usize
impl<O: ByteOrder> BitXorAssign<Usize<O>> for usize
Source§fn bitxor_assign(&mut self, rhs: Usize<O>)
fn bitxor_assign(&mut self, rhs: Usize<O>)
^=
operation. Read moreSource§impl<O: ByteOrder> BitXorAssign<usize> for Usize<O>
impl<O: ByteOrder> BitXorAssign<usize> for Usize<O>
Source§fn bitxor_assign(&mut self, rhs: usize)
fn bitxor_assign(&mut self, rhs: usize)
^=
operation. Read moreSource§impl<O: ByteOrder> BitXorAssign for Usize<O>
impl<O: ByteOrder> BitXorAssign for Usize<O>
Source§fn bitxor_assign(&mut self, rhs: Usize<O>)
fn bitxor_assign(&mut self, rhs: Usize<O>)
^=
operation. Read moreSource§impl<O: ByteOrder> DivAssign<Usize<O>> for usize
impl<O: ByteOrder> DivAssign<Usize<O>> for usize
Source§fn div_assign(&mut self, rhs: Usize<O>)
fn div_assign(&mut self, rhs: Usize<O>)
/=
operation. Read moreSource§impl<O: ByteOrder> DivAssign<usize> for Usize<O>
impl<O: ByteOrder> DivAssign<usize> for Usize<O>
Source§fn div_assign(&mut self, rhs: usize)
fn div_assign(&mut self, rhs: usize)
/=
operation. Read moreSource§impl<O: ByteOrder> DivAssign for Usize<O>
impl<O: ByteOrder> DivAssign for Usize<O>
Source§fn div_assign(&mut self, rhs: Usize<O>)
fn div_assign(&mut self, rhs: Usize<O>)
/=
operation. Read moreSource§impl<O> FromBytes for Usize<O>
impl<O> FromBytes for Usize<O>
Source§fn ref_from_bytes(source: &[u8]) -> Result<&Self, CastError<&[u8], Self>>where
Self: KnownLayout + Immutable,
fn ref_from_bytes(source: &[u8]) -> Result<&Self, CastError<&[u8], Self>>where
Self: KnownLayout + Immutable,
Source§fn ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), CastError<&[u8], Self>>where
Self: KnownLayout + Immutable,
fn ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), CastError<&[u8], Self>>where
Self: KnownLayout + Immutable,
Source§fn ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), CastError<&[u8], Self>>where
Self: Immutable + KnownLayout,
fn ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), CastError<&[u8], Self>>where
Self: Immutable + KnownLayout,
&Self
. Read moreSource§fn mut_from_bytes(
source: &mut [u8],
) -> Result<&mut Self, CastError<&mut [u8], Self>>where
Self: IntoBytes + KnownLayout,
fn mut_from_bytes(
source: &mut [u8],
) -> Result<&mut Self, CastError<&mut [u8], Self>>where
Self: IntoBytes + KnownLayout,
Source§fn mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), CastError<&mut [u8], Self>>where
Self: IntoBytes + KnownLayout,
fn mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), CastError<&mut [u8], Self>>where
Self: IntoBytes + KnownLayout,
Source§fn mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), CastError<&mut [u8], Self>>where
Self: IntoBytes + KnownLayout,
fn mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), CastError<&mut [u8], Self>>where
Self: IntoBytes + KnownLayout,
Source§impl<O> IntoBytes for Usize<O>
impl<O> IntoBytes for Usize<O>
Source§fn as_mut_bytes(&mut self) -> &mut [u8]where
Self: FromBytes,
fn as_mut_bytes(&mut self) -> &mut [u8]where
Self: FromBytes,
Source§fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
Source§impl<O> KnownLayout for Usize<O>
impl<O> KnownLayout for Usize<O>
Source§type PointerMetadata = ()
type PointerMetadata = ()
Self
. Read moreSource§impl<O: ByteOrder> MulAssign<Usize<O>> for usize
impl<O: ByteOrder> MulAssign<Usize<O>> for usize
Source§fn mul_assign(&mut self, rhs: Usize<O>)
fn mul_assign(&mut self, rhs: Usize<O>)
*=
operation. Read moreSource§impl<O: ByteOrder> MulAssign<usize> for Usize<O>
impl<O: ByteOrder> MulAssign<usize> for Usize<O>
Source§fn mul_assign(&mut self, rhs: usize)
fn mul_assign(&mut self, rhs: usize)
*=
operation. Read moreSource§impl<O: ByteOrder> MulAssign for Usize<O>
impl<O: ByteOrder> MulAssign for Usize<O>
Source§fn mul_assign(&mut self, rhs: Usize<O>)
fn mul_assign(&mut self, rhs: Usize<O>)
*=
operation. Read moreSource§impl<O: ByteOrder> Ord for Usize<O>
impl<O: ByteOrder> Ord for Usize<O>
Source§impl<O: ByteOrder> PartialOrd<usize> for Usize<O>
impl<O: ByteOrder> PartialOrd<usize> for Usize<O>
Source§impl<O: ByteOrder> PartialOrd for Usize<O>
impl<O: ByteOrder> PartialOrd for Usize<O>
Source§impl<O: ByteOrder> RemAssign<Usize<O>> for usize
impl<O: ByteOrder> RemAssign<Usize<O>> for usize
Source§fn rem_assign(&mut self, rhs: Usize<O>)
fn rem_assign(&mut self, rhs: Usize<O>)
%=
operation. Read moreSource§impl<O: ByteOrder> RemAssign<usize> for Usize<O>
impl<O: ByteOrder> RemAssign<usize> for Usize<O>
Source§fn rem_assign(&mut self, rhs: usize)
fn rem_assign(&mut self, rhs: usize)
%=
operation. Read moreSource§impl<O: ByteOrder> RemAssign for Usize<O>
impl<O: ByteOrder> RemAssign for Usize<O>
Source§fn rem_assign(&mut self, rhs: Usize<O>)
fn rem_assign(&mut self, rhs: Usize<O>)
%=
operation. Read moreSource§impl<O: ByteOrder> ShlAssign<Usize<O>> for usize
impl<O: ByteOrder> ShlAssign<Usize<O>> for usize
Source§fn shl_assign(&mut self, rhs: Usize<O>)
fn shl_assign(&mut self, rhs: Usize<O>)
<<=
operation. Read moreSource§impl<O: ByteOrder> ShlAssign<usize> for Usize<O>
impl<O: ByteOrder> ShlAssign<usize> for Usize<O>
Source§fn shl_assign(&mut self, rhs: usize)
fn shl_assign(&mut self, rhs: usize)
<<=
operation. Read moreSource§impl<O: ByteOrder> ShlAssign for Usize<O>
impl<O: ByteOrder> ShlAssign for Usize<O>
Source§fn shl_assign(&mut self, rhs: Usize<O>)
fn shl_assign(&mut self, rhs: Usize<O>)
<<=
operation. Read moreSource§impl<O: ByteOrder> ShrAssign<Usize<O>> for usize
impl<O: ByteOrder> ShrAssign<Usize<O>> for usize
Source§fn shr_assign(&mut self, rhs: Usize<O>)
fn shr_assign(&mut self, rhs: Usize<O>)
>>=
operation. Read moreSource§impl<O: ByteOrder> ShrAssign<usize> for Usize<O>
impl<O: ByteOrder> ShrAssign<usize> for Usize<O>
Source§fn shr_assign(&mut self, rhs: usize)
fn shr_assign(&mut self, rhs: usize)
>>=
operation. Read moreSource§impl<O: ByteOrder> ShrAssign for Usize<O>
impl<O: ByteOrder> ShrAssign for Usize<O>
Source§fn shr_assign(&mut self, rhs: Usize<O>)
fn shr_assign(&mut self, rhs: Usize<O>)
>>=
operation. Read moreSource§impl<O: ByteOrder> SubAssign<Usize<O>> for usize
impl<O: ByteOrder> SubAssign<Usize<O>> for usize
Source§fn sub_assign(&mut self, rhs: Usize<O>)
fn sub_assign(&mut self, rhs: Usize<O>)
-=
operation. Read moreSource§impl<O: ByteOrder> SubAssign<usize> for Usize<O>
impl<O: ByteOrder> SubAssign<usize> for Usize<O>
Source§fn sub_assign(&mut self, rhs: usize)
fn sub_assign(&mut self, rhs: usize)
-=
operation. Read moreSource§impl<O: ByteOrder> SubAssign for Usize<O>
impl<O: ByteOrder> SubAssign for Usize<O>
Source§fn sub_assign(&mut self, rhs: Usize<O>)
fn sub_assign(&mut self, rhs: Usize<O>)
-=
operation. Read more