pub struct VarInt(pub u64);
Expand description
Variable-integer encoding
Gets the length of this VarInt when encoded.
Returns:
- 1 for 0..0xFC
- 3 for 0xFD..(2^16-1)
- 5 for 0x10000..(2^32-1)
- 9 otherwise
Formats the value using the given formatter.
Read more
Encode an object with a well-defined format.
Should only ever error if the underlying Write errors.
Returns the number of bytes written on success.
This method tests for self and other values to be equal, and is used
by ==.
This method tests for !=. The default implementation is almost always
sufficient, and should not be overridden without very good reason.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.