Enum tinyjson::JsonValue [] [src]

pub enum JsonValue {
    Number(f64),
    Boolean(bool),
    String(String),
    Null,
    Array(Vec<JsonValue>),
    Object(HashMap<StringJsonValue>),
}

Variants

Number(f64)Boolean(bool)String(String)NullArray(Vec<JsonValue>)Object(HashMap<StringJsonValue>)

Trait Implementations

impl Debug for JsonValue
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.