[][src]Enum ajson::Value

pub enum Value {
    String(String),
    Number(Number),
    Object(String),
    Array(String),
    Boolean(bool),
    Null,
}

Represents JSON valuue.

Variants

String(String)

Represents a JSON String.

Number(Number)

Respesents a JSON number.

Object(String)

Respesents a JSON object.

Array(String)

Respesents a JSON array.

Boolean(bool)

Respesents a JSON boolean.

Null

Respesents a JSON null value.

Methods

impl Value[src]

pub fn get(&self, path: &str) -> Option<Value>[src]

Get sub value from a JSON array or map. About path syntax, see here. For more detail, see get.

use ajson::Value;

let v = Value::Array("[1,2,3]".to_owned());
let first_num = v.get("0").unwrap();
assert_eq!(first_num.to_i64(), 1_i64);

impl Value[src]

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

Returns true if the Value is a JSON string.

let v = ajson::get(r#"{"name":"ajson"}"#, "name").unwrap();
assert!(v.is_string());

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

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

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

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

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

impl Value[src]

pub fn as_str(&self) -> &str[src]

pub fn to_f64(&self) -> f64[src]

pub fn to_u64(&self) -> u64[src]

pub fn to_i64(&self) -> i64[src]

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

pub fn to_vec(&self) -> Vec<Value>[src]

pub fn to_object(&self) -> HashMap<String, Value>[src]

Trait Implementations

impl Clone for Value[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Value> for Value[src]

impl<'a> PartialEq<&'a str> for Value[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl PartialEq<f64> for Value[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Display for Value[src]

impl Debug for Value[src]

Auto Trait Implementations

impl Sync for Value

impl Send for Value

impl Unpin for Value

impl RefUnwindSafe for Value

impl UnwindSafe for Value

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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.

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.

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

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

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