Expand description
Re-exports§
pub use varint::*;
Modules§
- varint 🔒
- Monero’s VarInt type, frequently used to encode integers expected to be of low norm.
Functions§
- read_
array - Read a constant-length list of elements.
- read_
byte - Read a single byte.
- read_
bytes - Read a constant amount of bytes.
- read_
raw_ vec - Read a variable-length list of elements, without length-prefixing.
- read_
u16 - Read a u16, little-endian encoded.
- read_
u32 - Read a u32, little-endian encoded.
- read_
u64 - Read a u64, little-endian encoded.
- read_
vec - Read a length-prefixed variable-length list of elements.
- write_
byte - Write a byte.
- write_
raw_ vec - Write a list of elements, without length-prefixing.
- write_
vec - Write a list of elements, with length-prefixing.