1 2 3 4 5 6 7
/// A JSON number represented by some Rust primitive. #[derive(Clone, Debug)] pub enum Number { U64(u64), I64(i64), F64(f64), }