pub struct varu32(pub u32);
Expand description
A variable length integer type that can be up to 32 bits.
This is a helper type for deriving the BinaryIo
trait.
You should not use this type directly, if you are reading or writing
a variable length integer, use the ByteWriter
or ByteReader
and use
the corresponding read_var_u32
or write_var_u32
methods.
Tuple Fields§
§0: u32
Implementations§
Trait Implementations§
Source§impl Ord for varu32
impl Ord for varu32
Source§impl PartialOrd for varu32
impl PartialOrd for varu32
Source§impl Writer for varu32
impl Writer for varu32
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.impl Copy for varu32
impl Eq for varu32
impl StructuralPartialEq for varu32
Auto Trait Implementations§
impl Freeze for varu32
impl RefUnwindSafe for varu32
impl Send for varu32
impl Sync for varu32
impl Unpin for varu32
impl UnwindSafe for varu32
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