pub struct I16<O>(/* private fields */);
Expand description
A 16-bit signed integer stored in a given byte order.
I16
is like the native i16
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
.
An I16
can be constructed using
the new
method, and its contained value can be obtained as a native
i16
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 I16
has endianness O
and that, b) the layout of i16
has
the platform’s native endianness.
I16
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> I16<O>
impl<O> I16<O>
sourcepub const ZERO: I16<O> = _
pub const ZERO: I16<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 fn from_bytes(bytes: [u8; 2]) -> I16<O>
pub const fn from_bytes(bytes: [u8; 2]) -> I16<O>
Constructs a new value from bytes which are already in the
endianness O
.
source§impl<O: ByteOrder> I16<O>
impl<O: ByteOrder> I16<O>
sourcepub fn new(n: i16) -> I16<O>
pub fn new(n: i16) -> I16<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 I16<O>
impl<O: ByteOrder> AddAssign for I16<O>
source§fn add_assign(&mut self, rhs: I16<O>)
fn add_assign(&mut self, rhs: I16<O>)
+=
operation. Read moresource§impl<O> AsBytes for I16<O>
impl<O> AsBytes for I16<O>
source§impl<O: ByteOrder> BitAndAssign for I16<O>
impl<O: ByteOrder> BitAndAssign for I16<O>
source§fn bitand_assign(&mut self, rhs: I16<O>)
fn bitand_assign(&mut self, rhs: I16<O>)
&=
operation. Read moresource§impl<O: ByteOrder> BitOrAssign for I16<O>
impl<O: ByteOrder> BitOrAssign for I16<O>
source§fn bitor_assign(&mut self, rhs: I16<O>)
fn bitor_assign(&mut self, rhs: I16<O>)
|=
operation. Read moresource§impl<O: ByteOrder> BitXorAssign for I16<O>
impl<O: ByteOrder> BitXorAssign for I16<O>
source§fn bitxor_assign(&mut self, rhs: I16<O>)
fn bitxor_assign(&mut self, rhs: I16<O>)
^=
operation. Read moresource§impl<O: ByteOrder> DivAssign for I16<O>
impl<O: ByteOrder> DivAssign for I16<O>
source§fn div_assign(&mut self, rhs: I16<O>)
fn div_assign(&mut self, rhs: I16<O>)
/=
operation. Read moresource§impl<O> FromBytes for I16<O>
impl<O> FromBytes for I16<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,
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,
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])>
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])>
bytes
as a &mut [Self]
with length
equal to count
without copying. Read moresource§impl<O> FromZeroes for I16<O>
impl<O> FromZeroes for I16<O>
source§impl<O: ByteOrder> MulAssign for I16<O>
impl<O: ByteOrder> MulAssign for I16<O>
source§fn mul_assign(&mut self, rhs: I16<O>)
fn mul_assign(&mut self, rhs: I16<O>)
*=
operation. Read moresource§impl<O: ByteOrder> PartialEq<[u8; 2]> for I16<O>
impl<O: ByteOrder> PartialEq<[u8; 2]> for I16<O>
source§impl<O: ByteOrder> PartialEq<I16<O>> for [u8; 2]
impl<O: ByteOrder> PartialEq<I16<O>> for [u8; 2]
source§impl<O: PartialEq> PartialEq for I16<O>
impl<O: PartialEq> PartialEq for I16<O>
source§impl<O: ByteOrder> RemAssign for I16<O>
impl<O: ByteOrder> RemAssign for I16<O>
source§fn rem_assign(&mut self, rhs: I16<O>)
fn rem_assign(&mut self, rhs: I16<O>)
%=
operation. Read moresource§impl<O: ByteOrder> ShlAssign for I16<O>
impl<O: ByteOrder> ShlAssign for I16<O>
source§fn shl_assign(&mut self, rhs: I16<O>)
fn shl_assign(&mut self, rhs: I16<O>)
<<=
operation. Read moresource§impl<O: ByteOrder> ShrAssign for I16<O>
impl<O: ByteOrder> ShrAssign for I16<O>
source§fn shr_assign(&mut self, rhs: I16<O>)
fn shr_assign(&mut self, rhs: I16<O>)
>>=
operation. Read moresource§impl<O: ByteOrder> SubAssign for I16<O>
impl<O: ByteOrder> SubAssign for I16<O>
source§fn sub_assign(&mut self, rhs: I16<O>)
fn sub_assign(&mut self, rhs: I16<O>)
-=
operation. Read moresource§impl<O: ByteOrder, P: ByteOrder> TryFrom<I128<P>> for I16<O>
impl<O: ByteOrder, P: ByteOrder> TryFrom<I128<P>> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
source§impl<O: ByteOrder, P: ByteOrder> TryFrom<I32<P>> for I16<O>
impl<O: ByteOrder, P: ByteOrder> TryFrom<I32<P>> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
source§impl<O: ByteOrder, P: ByteOrder> TryFrom<I64<P>> for I16<O>
impl<O: ByteOrder, P: ByteOrder> TryFrom<I64<P>> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
source§impl<O: ByteOrder> TryFrom<i128> for I16<O>
impl<O: ByteOrder> TryFrom<i128> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
source§impl<O: ByteOrder> TryFrom<i32> for I16<O>
impl<O: ByteOrder> TryFrom<i32> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
source§impl<O: ByteOrder> TryFrom<i64> for I16<O>
impl<O: ByteOrder> TryFrom<i64> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
source§impl<O: ByteOrder> TryFrom<isize> for I16<O>
impl<O: ByteOrder> TryFrom<isize> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
impl<O: Copy> Copy for I16<O>
impl<O: Eq> Eq for I16<O>
impl<O> StructuralPartialEq for I16<O>
impl<O> Unaligned for I16<O>
Auto Trait Implementations§
impl<O> Freeze for I16<O>
impl<O> RefUnwindSafe for I16<O>where
O: RefUnwindSafe,
impl<O> Send for I16<O>where
O: Send,
impl<O> Sync for I16<O>where
O: Sync,
impl<O> Unpin for I16<O>where
O: Unpin,
impl<O> UnwindSafe for I16<O>where
O: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)