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 38 39 40 41 42 43
mod from; mod into; #[derive(Clone, Debug, PartialEq)] pub enum Marker { PositiveFixInt(u8), FixMap(u8), FixArray(u8), FixStr(u8), Nil, Reserved, False, True, Bin8, Bin16, Bin32, Ext8, Ext16, Ext32, Float32, Float64, UInt8, UInt16, UInt32, UInt64, Int8, Int16, Int32, Int64, FixExt1, FixExt2, FixExt4, FixExt8, FixExt16, Str8, Str16, Str32, Array16, Array32, Map16, Map32, NegativeFixInt(i8), }