1 2 3 4 5 6
#[derive(Copy, Clone, Debug)] pub enum NumericValue { Int(i128), UInt(u128), Float(f64), }