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

impl Json[src]

pub fn pretty(&self) -> PrettyJson<'_>[src]

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

pub fn find(&self, key: &str) -> Option<&Json>[src]

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

pub fn find_path<'a>(&'a self, keys: &[&str]) -> Option<&'a Json>[src]

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.

pub fn search(&self, key: &str) -> Option<&Json>[src]

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.

pub fn is_object(&self) -> bool[src]

Returns true if the Json value is an Object.

pub fn as_object(&self) -> Option<&Object>[src]

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

pub fn is_array(&self) -> bool[src]

Returns true if the Json value is an Array.

pub fn as_array(&self) -> Option<&Array>[src]

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

pub fn is_string(&self) -> bool[src]

Returns true if the Json value is a String.

pub fn as_string(&self) -> Option<&str>[src]

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

pub fn is_number(&self) -> bool[src]

Returns true if the Json value is a Number.

pub fn is_i64(&self) -> bool[src]

Returns true if the Json value is a i64.

pub fn is_u64(&self) -> bool[src]

Returns true if the Json value is a u64.

pub fn is_f64(&self) -> bool[src]

Returns true if the Json value is a f64.

pub fn as_i64(&self) -> Option<i64>[src]

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

pub fn as_u64(&self) -> Option<u64>[src]

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

pub fn as_f64(&self) -> Option<f64>[src]

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

pub fn is_boolean(&self) -> bool[src]

Returns true if the Json value is a Boolean.

pub fn as_boolean(&self) -> Option<bool>[src]

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

pub fn is_null(&self) -> bool[src]

Returns true if the Json value is a Null.

pub fn as_null(&self) -> Option<()>[src]

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

Trait Implementations

impl Clone for Json[src]

fn clone(&self) -> Json[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Json[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for Json[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Encodes a json value into a string

impl<E: Encoder> Encodable<E> for Json[src]

fn encode(&self, e: &mut E) -> Result<(), E::Error>[src]

impl FromStr for Json[src]

type Err = BuilderError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Json, BuilderError>[src]

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

impl<'a> Index<&'a str> for Json[src]

type Output = Json

The returned type after indexing.

fn index(&self, idx: &'a str) -> &Json[src]

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

impl Index<usize> for Json[src]

type Output = Json

The returned type after indexing.

fn index(&self, idx: usize) -> &Json[src]

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

impl PartialEq<Json> for Json[src]

fn eq(&self, other: &Json) -> bool[src]

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

fn ne(&self, other: &Json) -> bool[src]

This method tests for !=.

impl PartialOrd<Json> for Json[src]

fn partial_cmp(&self, other: &Json) -> Option<Ordering>[src]

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

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

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

impl ToJson for Json[src]

fn to_json(&self) -> Json[src]

Converts the value of self to an instance of JSON

impl StructuralPartialEq for Json[src]

Auto Trait Implementations

impl RefUnwindSafe for Json

impl Send for Json

impl Sync for Json

impl Unpin for Json

impl UnwindSafe for Json

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.