pub struct WireI32(/* private fields */);Expand description
32-bit signed little-endian wire integer.
Implementations§
Trait Implementations§
Source§impl FixedLayout for WireI32
impl FixedLayout for WireI32
Source§impl Ord for WireI32
impl Ord for WireI32
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 WireI32
impl PartialOrd for WireI32
impl Copy for WireI32
impl Eq for WireI32
impl HopperZeroCopySealed for WireI32
impl Pod for WireI32
Available on crate feature
hopper-native-backend only.impl Pod for WireI32
impl StructuralPartialEq for WireI32
Auto Trait Implementations§
impl Freeze for WireI32
impl RefUnwindSafe for WireI32
impl Send for WireI32
impl Sync for WireI32
impl Unpin for WireI32
impl UnsafeUnpin for WireI32
impl UnwindSafe for WireI32
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.