Expand description
Unsigned varint encodes unsigned integers in 7-bit groups. The most significant bit (MSB) in each byte indicates if another byte follows (MSB = 1), or not (MSB = 0).
Modulesยง
- aio
- Decode using
futures_io::AsyncRead
types. - codec
Encoder
/Decoder
implementations for tokio or asynchronous_codec.- decode
- Basic unsigned-varint decoding.
- encode
- Basic unsigned-varint encoding.
- io
- Decode using
std::io::Read
types. - nom
nom
combinators to decode unsigned varints.