Enum miniserde::json::Number[][src]

pub enum Number {
    U64(u64),
    I64(i64),
    F64(f64),
}

A JSON number represented by some Rust primitive.

Variants

Trait Implementations

impl Clone for Number
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Number
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Number

impl Sync for Number