Type Alias zerocopy::byteorder::native_endian::I16
source · pub type I16 = I16<NativeEndian>;
Expand description
A 16-bit signed integer stored in native-endian byte order.
Aliased Type§
struct I16(/* private fields */);
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<I16<O>> for I16<O>
impl<O: ByteOrder> AddAssign<I16<O>> for I16<O>
source§fn add_assign(&mut self, rhs: I16<O>)
fn add_assign(&mut self, rhs: I16<O>)
Performs the
+=
operation. Read moresource§impl<O> AsBytes for I16<O>where
[u8; 2]: AsBytes,
PhantomData<O>: AsBytes,
impl<O> AsBytes for I16<O>where [u8; 2]: AsBytes, PhantomData<O>: AsBytes,
source§impl<O: ByteOrder> BitAndAssign<I16<O>> for I16<O>
impl<O: ByteOrder> BitAndAssign<I16<O>> for I16<O>
source§fn bitand_assign(&mut self, rhs: I16<O>)
fn bitand_assign(&mut self, rhs: I16<O>)
Performs the
&=
operation. Read moresource§impl<O: ByteOrder> BitOrAssign<I16<O>> for I16<O>
impl<O: ByteOrder> BitOrAssign<I16<O>> for I16<O>
source§fn bitor_assign(&mut self, rhs: I16<O>)
fn bitor_assign(&mut self, rhs: I16<O>)
Performs the
|=
operation. Read moresource§impl<O: ByteOrder> BitXorAssign<I16<O>> for I16<O>
impl<O: ByteOrder> BitXorAssign<I16<O>> for I16<O>
source§fn bitxor_assign(&mut self, rhs: I16<O>)
fn bitxor_assign(&mut self, rhs: I16<O>)
Performs the
^=
operation. Read moresource§impl<O: ByteOrder> DivAssign<I16<O>> for I16<O>
impl<O: ByteOrder> DivAssign<I16<O>> for I16<O>
source§fn div_assign(&mut self, rhs: I16<O>)
fn div_assign(&mut self, rhs: I16<O>)
Performs the
/=
operation. Read moresource§impl<O> FromBytes for I16<O>where
[u8; 2]: FromBytes,
PhantomData<O>: FromBytes,
impl<O> FromBytes for I16<O>where [u8; 2]: FromBytes, PhantomData<O>: FromBytes,
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])>where
Self: Sized + AsBytes,
fn mut_slice_from_prefix( bytes: &mut [u8], count: usize ) -> Option<(&mut [Self], &mut [u8])>where Self: Sized + AsBytes,
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])>where
Self: Sized + AsBytes,
fn mut_slice_from_suffix( bytes: &mut [u8], count: usize ) -> Option<(&mut [u8], &mut [Self])>where Self: Sized + AsBytes,
Interprets the suffix of the given
bytes
as a &mut [Self]
with length
equal to count
without copying. Read moresource§impl<O> FromZeroes for I16<O>where
[u8; 2]: FromZeroes,
PhantomData<O>: FromZeroes,
impl<O> FromZeroes for I16<O>where [u8; 2]: FromZeroes, PhantomData<O>: FromZeroes,
source§impl<O: ByteOrder> MulAssign<I16<O>> for I16<O>
impl<O: ByteOrder> MulAssign<I16<O>> for I16<O>
source§fn mul_assign(&mut self, rhs: I16<O>)
fn mul_assign(&mut self, rhs: I16<O>)
Performs the
*=
operation. Read moresource§impl<O: ByteOrder> PartialEq<[u8; 2]> for I16<O>
impl<O: ByteOrder> PartialEq<[u8; 2]> for I16<O>
source§impl<O: PartialEq> PartialEq<I16<O>> for I16<O>
impl<O: PartialEq> PartialEq<I16<O>> for I16<O>
source§impl<O: ByteOrder> RemAssign<I16<O>> for I16<O>
impl<O: ByteOrder> RemAssign<I16<O>> for I16<O>
source§fn rem_assign(&mut self, rhs: I16<O>)
fn rem_assign(&mut self, rhs: I16<O>)
Performs the
%=
operation. Read moresource§impl<O: ByteOrder> ShlAssign<I16<O>> for I16<O>
impl<O: ByteOrder> ShlAssign<I16<O>> for I16<O>
source§fn shl_assign(&mut self, rhs: I16<O>)
fn shl_assign(&mut self, rhs: I16<O>)
Performs the
<<=
operation. Read moresource§impl<O: ByteOrder> ShrAssign<I16<O>> for I16<O>
impl<O: ByteOrder> ShrAssign<I16<O>> for I16<O>
source§fn shr_assign(&mut self, rhs: I16<O>)
fn shr_assign(&mut self, rhs: I16<O>)
Performs the
>>=
operation. Read moresource§impl<O: ByteOrder> SubAssign<I16<O>> for I16<O>
impl<O: ByteOrder> SubAssign<I16<O>> for I16<O>
source§fn sub_assign(&mut self, rhs: I16<O>)
fn sub_assign(&mut self, rhs: I16<O>)
Performs the
-=
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
The type returned in the event of a conversion error.
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
The type returned in the event of a conversion error.
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
The type returned in the event of a conversion error.
source§impl<O: ByteOrder> TryFrom<i128> for I16<O>
impl<O: ByteOrder> TryFrom<i128> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
source§impl<O: ByteOrder> TryFrom<i32> for I16<O>
impl<O: ByteOrder> TryFrom<i32> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
source§impl<O: ByteOrder> TryFrom<i64> for I16<O>
impl<O: ByteOrder> TryFrom<i64> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
source§impl<O: ByteOrder> TryFrom<isize> for I16<O>
impl<O: ByteOrder> TryFrom<isize> for I16<O>
§type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.