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