pub struct WireI16(/* private fields */);Expand description
16-bit signed little-endian wire integer.
Implementations§
Trait Implementations§
Source§impl FixedLayout for WireI16
impl FixedLayout for WireI16
Source§impl Ord for WireI16
impl Ord for WireI16
1.21.0 (const: unstable) · 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 PartialOrd for WireI16
impl PartialOrd for WireI16
impl Copy for WireI16
impl Eq for WireI16
impl HopperZeroCopySealed for WireI16
impl Pod for WireI16
Available on crate feature
hopper-native-backend only.impl Pod for WireI16
impl StructuralPartialEq for WireI16
Auto Trait Implementations§
impl Freeze for WireI16
impl RefUnwindSafe for WireI16
impl Send for WireI16
impl Sync for WireI16
impl Unpin for WireI16
impl UnsafeUnpin for WireI16
impl UnwindSafe for WireI16
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.