1mod from;
2mod into;
3
4#[derive(Clone, Debug, PartialEq)]
5pub enum Marker {
6 PositiveFixInt(u8),
7 FixMap(u8),
8 FixArray(u8),
9 FixStr(u8),
10 Nil,
11 Reserved,
12 False,
13 True,
14 Bin8,
15 Bin16,
16 Bin32,
17 Ext8,
18 Ext16,
19 Ext32,
20 Float32,
21 Float64,
22 UInt8,
23 UInt16,
24 UInt32,
25 UInt64,
26 Int8,
27 Int16,
28 Int32,
29 Int64,
30 FixExt1,
31 FixExt2,
32 FixExt4,
33 FixExt8,
34 FixExt16,
35 Str8,
36 Str16,
37 Str32,
38 Array16,
39 Array32,
40 Map16,
41 Map32,
42 NegativeFixInt(i8),
43}