Functionsยง
- decode_
varint - Read a varint from a byte slice (convenience wrapper)
- encode_
varint - Write a varint to a byte vector (convenience wrapper)
- read_
fixed_ u64 - Read a fixed 8-byte unsigned integer
- read_
varint - Read a value with variable-length encoding Returns (value, bytes_read)
- write_
fixed_ u64 - Write a fixed 8-byte unsigned integer
- write_
varint - Write a value with variable-length encoding Format: [num_bytes: u8][value bytes in big-endian] Returns number of bytes written