#[repr(transparent)]pub struct I16Bytes<E: Endian>(_, _);
Expand description
An unaligned i16
value with an externally specified endianness of type E
.
Implementations§
Trait Implementations§
source§impl<E: Ord + Endian> Ord for I16Bytes<E>
impl<E: Ord + Endian> Ord for I16Bytes<E>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<E: PartialEq + Endian> PartialEq<I16Bytes<E>> for I16Bytes<E>
impl<E: PartialEq + Endian> PartialEq<I16Bytes<E>> for I16Bytes<E>
source§impl<E: PartialOrd + Endian> PartialOrd<I16Bytes<E>> for I16Bytes<E>
impl<E: PartialOrd + Endian> PartialOrd<I16Bytes<E>> for I16Bytes<E>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<E: Copy + Endian> Copy for I16Bytes<E>
impl<E: Eq + Endian> Eq for I16Bytes<E>
impl<E: Endian> Pod for I16Bytes<E>
impl<E: Endian> StructuralEq for I16Bytes<E>
impl<E: Endian> StructuralPartialEq for I16Bytes<E>
Auto Trait Implementations§
impl<E> RefUnwindSafe for I16Bytes<E>where E: RefUnwindSafe,
impl<E> Send for I16Bytes<E>where E: Send,
impl<E> Sync for I16Bytes<E>where E: Sync,
impl<E> Unpin for I16Bytes<E>where E: Unpin,
impl<E> UnwindSafe for I16Bytes<E>where E: 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
Mutably borrows from an owned value. Read more