1 2make_nanbox!{ 3 pub unsafe enum Value, Variant { 4 Float(f64), 5 Byte(u8), 6 Int(i32), 7 Pointer(*mut Value) 8 } 9}