Enum sn::Value[][src]

pub enum Value<'a> {
    String(Bytes<'a>),
    Number(f64),
    Boolean(bool),
    Object(HashMap<Bytes<'a>, Value<'a>>),
    Array(Vec<Value<'a>>),
    Null,
    Nothing,
}

A value as represented in parsed JSON.

Variants

String(Bytes<'a>)

A string, composed of bytes borrowed from the input.

Number(f64)

A 64-bit precision floating point number.

Boolean(bool)

A boolean.

Object(HashMap<Bytes<'a>, Value<'a>>)

An object, represented as a HashMap of a String to a Value.

Array(Vec<Value<'a>>)

An array, represented as a Vec of Values.

Null

Null (No value).

Nothing

The supplied JSON is completely empty.

Trait Implementations

impl<'a> Debug for Value<'a>[src]

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

impl<'a> StructuralPartialEq for Value<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Value<'a>

impl<'a> Send for Value<'a>

impl<'a> Sync for Value<'a>

impl<'a> Unpin for Value<'a>

impl<'a> UnwindSafe for Value<'a>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.