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