1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use thiserror::Error;
#[derive(Debug, Error)]
#[error("Number larger than u64.")]
pub struct NumberOutOfRange;
#[derive(Debug, Error)]
#[error("Length out of range.")]
pub struct LengthOutOfRange;
#[derive(Debug, Error)]
#[error("Unexpected cbor code.")]
pub struct UnexpectedCode;
#[derive(Debug, Error)]
#[error("Unkown cbor tag.")]
pub struct UnknownTag;
#[derive(Debug, Error)]
#[error("Wrong key.")]
pub struct UnexpectedKey;
#[derive(Debug, Error)]
#[error("Unexpected end of file.")]
pub struct UnexpectedEof;
#[derive(Debug, Error)]
#[error("Invalid Cid prefix: {0}")]
pub struct InvalidCidPrefix(pub u8);