pub struct I64<O>(/* private fields */);
Expand description
A 64-bit signed integer stored in O
byte order.
I64
is like the native i64
type with
two major differences: First, it has no alignment requirement (its alignment is 1).
Second, the endianness of its memory layout is given by the type parameter O
.
An I64
can be constructed using
the new
method, and its contained value can be obtained as a native
i64
using the get
method, or updated in place with
the set
method. In all cases, if the endianness O
is not the same as the
endianness of the current platform, an endianness swap will be performed in
order to uphold the invariants that a) the layout of I64
has endianness O
and that, b) the layout of i64
has
the platform’s native endianness.
I64
implements FromBytes
, AsBytes
, and Unaligned
,
making it useful for parsing and serialization. See the module documentation for an
example of how it can be used for parsing UDP packets.
Implementations§
source§impl<O> I64<O>
impl<O> I64<O>
sourcepub const ZERO: I64<O> = _
pub const ZERO: I64<O> = _
The value zero.
This constant should be preferred to constructing a new value
using new
, as new
may perform an endianness swap depending
on the endianness and platform.
sourcepub const fn from_bytes(bytes: [u8; 8]) -> I64<O>
pub const fn from_bytes(bytes: [u8; 8]) -> I64<O>
Constructs a new value from bytes which are already in the
endianness O
.
source§impl<O: ByteOrder> I64<O>
impl<O: ByteOrder> I64<O>
sourcepub fn new(n: i64) -> I64<O>
pub fn new(n: i64) -> I64<O>
Constructs a new value, possibly performing an endianness swap
to guarantee that the returned value has endianness O
.
Trait Implementations§
source§impl<O> AsBytes for I64<O>
impl<O> AsBytes for I64<O>
source§fn as_bytes_mut(&mut self) -> &mut [u8]where
Self: FromBytes,
fn as_bytes_mut(&mut self) -> &mut [u8]where
Self: FromBytes,
source§fn write_to_prefix<B: ByteSliceMut>(&self, bytes: B) -> Option<()>
fn write_to_prefix<B: ByteSliceMut>(&self, bytes: B) -> Option<()>
source§fn write_to_suffix<B: ByteSliceMut>(&self, bytes: B) -> Option<()>
fn write_to_suffix<B: ByteSliceMut>(&self, bytes: B) -> Option<()>
source§impl<O> FromBytes for I64<O>
impl<O> FromBytes for I64<O>
source§fn new_zeroed() -> Selfwhere
Self: Sized,
fn new_zeroed() -> Selfwhere
Self: Sized,
Self
from zeroed bytes.source§fn new_box_zeroed() -> Box<Self>where
Self: Sized,
fn new_box_zeroed() -> Box<Self>where
Self: Sized,
Box<Self>
from zeroed bytes. Read more