[][src]Enum gjson::Value

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

Variants

String(String)Number(Number)Object(String)Array(String)Boolean(bool)NullNotExist

Methods

impl Value[src]

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

pub fn get_by_utf8(&self, v: &[u8]) -> Value[src]

impl Value[src]

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

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

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 as_f64(&self) -> f64[src]

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

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

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

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

pub fn as_map(&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<'_> PartialEq<&'_ 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]