pub struct vari64(pub i64);
Expand description
A variable length integer type that can be up to 64 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
orByteReader
and use the correspondingread_var_i64
orwrite_var_i64
methods.
Tuple Fields§
§0: i64
Implementations§
Trait Implementations§
Source§impl Ord for vari64
impl Ord for vari64
Source§impl PartialOrd for vari64
impl PartialOrd for vari64
Source§impl Writer for vari64
impl Writer for vari64
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 vari64
impl Eq for vari64
impl StructuralPartialEq for vari64
Auto Trait Implementations§
impl Freeze for vari64
impl RefUnwindSafe for vari64
impl Send for vari64
impl Sync for vari64
impl Unpin for vari64
impl UnwindSafe for vari64
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