1#[derive(Debug, PartialEq)] 2pub enum Type { 3 Number = 0, 4 Bool = 1, 5 String = 2, 6 Null = 3, 7 Object = 4, 8 Array = 5, 9 Bigint = 6, 10}