Enum rustc_ap_rustc_serialize::json::Json[][src]

pub enum Json {
    I64(i64),
    U64(u64),
    F64(f64),
    String(String),
    Boolean(bool),
    Array(Array),
    Object(Object),
    Null,
}
Expand description

Represents a json value

Variants

I64(i64)
U64(u64)
F64(f64)
String(String)
Boolean(bool)
Array(Array)
Object(Object)
Null

Implementations

Borrow this json object as a pretty object to generate a pretty representation for it via Display.

If the Json value is an Object, returns the value associated with the provided key. Otherwise, returns None.

If the Json value is an Object, deletes the value associated with the provided key from the Object and returns it. Otherwise, returns None.

Attempts to get a nested Json Object for each key in keys. If any key is found not to exist, find_path will return None. Otherwise, it will return the Json value associated with the final key.

If the Json value is an Object, performs a depth-first search until a value associated with the provided key is found. If no value is found or the Json value is not an Object, returns None.

Returns true if the Json value is an Object.

If the Json value is an Object, returns the associated BTreeMap; returns None otherwise.

Returns true if the Json value is an Array.

If the Json value is an Array, returns the associated vector; returns None otherwise.

Returns true if the Json value is a String.

If the Json value is a String, returns the associated str; returns None otherwise.

Returns true if the Json value is a Number.

Returns true if the Json value is a i64.

Returns true if the Json value is a u64.

Returns true if the Json value is a f64.

If the Json value is a number, returns or cast it to a i64; returns None otherwise.

If the Json value is a number, returns or cast it to a u64; returns None otherwise.

If the Json value is a number, returns or cast it to a f64; returns None otherwise.

Returns true if the Json value is a Boolean.

If the Json value is a Boolean, returns the associated bool; returns None otherwise.

Returns true if the Json value is a Null.

If the Json value is a Null, returns (); returns None otherwise.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Encodes a json value into a string

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

The returned type after indexing.

Performs the indexing (container[index]) operation. Read more

The returned type after indexing.

Performs the indexing (container[index]) operation. Read more

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

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Converts the value of self to an instance of JSON

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.