protobuf/varint/
mod.rs

1pub(crate) mod decode;
2pub(crate) mod encode;
3pub(crate) mod generic;
4
5/// Encoded varint message is not longer than 10 bytes.
6pub(crate) const MAX_VARINT_ENCODED_LEN: usize = 10;
7pub(crate) const MAX_VARINT32_ENCODED_LEN: usize = 5;