pub struct BeU64(/* private fields */);
Expand description
A u64
data type that will always be serialized as big endian
Implementations§
Trait Implementations§
Source§impl Size for BeU64
impl Size for BeU64
Source§fn unpadded_size(&self) -> usize
fn unpadded_size(&self) -> usize
Size of the unpadded data structure. This will usually
only be unaligned for variable length types like
strings or byte buffers.
Source§fn padded_size(&self) -> usize
fn padded_size(&self) -> usize
Get the size of of the payload and align it to
the required netlink byte alignment.
impl Copy for BeU64
impl Eq for BeU64
impl StructuralPartialEq for BeU64
Auto Trait Implementations§
impl Freeze for BeU64
impl RefUnwindSafe for BeU64
impl Send for BeU64
impl Sync for BeU64
impl Unpin for BeU64
impl UnwindSafe for BeU64
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