[][src]Enum simd_json::value::borrowed::Value

pub enum Value<'v> {
    Null,
    Bool(bool),
    F64(f64),
    I64(i64),
    String(Cow<'v, str>),
    Array(Vec<Value<'v>>),
    Object(Map<'v>),
}

Variants

NullBool(bool)F64(f64)I64(i64)String(Cow<'v, str>)Array(Vec<Value<'v>>)Object(Map<'v>)

Methods

impl<'value> Value<'value>[src]

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

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

pub fn write<'writer, W>(&self, w: &mut W) -> Result<()> where
    W: 'writer + Write
[src]

pub fn write_pp<'writer, W>(&self, w: &mut W) -> Result<()> where
    W: 'writer + Write
[src]

Trait Implementations

impl<'v> ValueTrait for Value<'v>[src]

type Map = Map<'v>

type Array = Vec<Value<'v>>

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

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

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

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

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

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

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

impl<'v> Clone for Value<'v>[src]

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

Performs copy-assignment from source. Read more

impl<'v> Default for Value<'v>[src]

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

impl<'v> From<&'v str> for Value<'v>[src]

impl<'v> From<String> for Value<'v>[src]

impl<'v> From<bool> for Value<'v>[src]

impl<'v> From<()> for Value<'v>[src]

impl<'v> From<i8> for Value<'v>[src]

impl<'v> From<i16> for Value<'v>[src]

impl<'v> From<i32> for Value<'v>[src]

impl<'v> From<i64> for Value<'v>[src]

impl<'v, '_> From<&'_ i8> for Value<'v>[src]

impl<'v, '_> From<&'_ i16> for Value<'v>[src]

impl<'v, '_> From<&'_ i32> for Value<'v>[src]

impl<'v, '_> From<&'_ i64> for Value<'v>[src]

impl<'v> From<u8> for Value<'v>[src]

impl<'v> From<u16> for Value<'v>[src]

impl<'v> From<u32> for Value<'v>[src]

impl<'v> From<u64> for Value<'v>[src]

impl<'v, '_> From<&'_ u8> for Value<'v>[src]

impl<'v, '_> From<&'_ u16> for Value<'v>[src]

impl<'v, '_> From<&'_ u32> for Value<'v>[src]

impl<'v, '_> From<&'_ u64> for Value<'v>[src]

impl<'v> From<f32> for Value<'v>[src]

impl<'v> From<f64> for Value<'v>[src]

impl<'v, '_> From<&'_ f32> for Value<'v>[src]

impl<'v, '_> From<&'_ f64> for Value<'v>[src]

impl<'v, S> From<Vec<S>> for Value<'v> where
    Value<'v>: From<S>, 
[src]

impl<'_> From<Value<'_>> for Value[src]

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

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

This method tests for !=.

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

impl<'v> Display for Value<'v>[src]

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

impl<'v, '_> Index<&'_ str> for Value<'v>[src]

type Output = Value<'v>

The returned type after indexing.

impl<'v, V: Into<Value<'v>>> FromIterator<V> for Value<'v>[src]

impl<'v, K: Into<Cow<'v, str>>, V: Into<Value<'v>>> FromIterator<(K, V)> for Value<'v>[src]

impl<'de> Deserializer<'de> for Value<'de>[src]

type Error = Error

The error type that can be returned if some error occurs during deserialization. Read more

fn is_human_readable(&self) -> bool[src]

Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more

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

impl<'de> Deserialize<'de> for Value<'de>[src]

Auto Trait Implementations

impl<'v> Sync for Value<'v>

impl<'v> Send for Value<'v>

impl<'v> Unpin for Value<'v>

impl<'v> RefUnwindSafe for Value<'v>

impl<'v> UnwindSafe for Value<'v>

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]