pub struct EncodedUInt { /* private fields */ }
Expand description
The big-endian, compact slice of bytes for a UInt (u64
). Leading zero
octets are not part of the representation. See the spec for more
information.
Implementations§
Trait Implementations§
Source§impl AsRef<[u8]> for EncodedUInt
impl AsRef<[u8]> for EncodedUInt
Source§impl Clone for EncodedUInt
impl Clone for EncodedUInt
Source§fn clone(&self) -> EncodedUInt
fn clone(&self) -> EncodedUInt
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EncodedUInt
impl Debug for EncodedUInt
Source§impl PartialEq for EncodedUInt
impl PartialEq for EncodedUInt
impl Eq for EncodedUInt
impl StructuralPartialEq for EncodedUInt
Auto Trait Implementations§
impl Freeze for EncodedUInt
impl RefUnwindSafe for EncodedUInt
impl Send for EncodedUInt
impl Sync for EncodedUInt
impl Unpin for EncodedUInt
impl UnwindSafe for EncodedUInt
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