Enum json::ast::Json [] [src]

pub enum Json {
    Bool(bool),
    Number(f64),
    String(String),
    Array(Vec<Json>),
    Object(HashMap<String, Json>),
    Null,
}

Variants

Trait Implementations

impl Clone for Json
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Json
[src]

Formats the value using the given formatter.

impl PartialEq for Json
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl FromJson for Json
[src]

impl ToJson for Json
[src]