uvarint 0.1.0

unsigned varint
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use thiserror::Error;

#[derive(Debug, Error)]
pub enum UVarintError {
    #[error("Incomplete")]
    Incomplete,

    #[error("Overflow")]
    Overflow,

    #[error("BufferTooSmall")]
    BufferTooSmall,
}