[−][src]Enum simd_json::value::borrowed::Value
Variants
Null
Bool(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]
W: 'writer + Write,
pub fn write_pp<'writer, W>(&self, w: &mut W) -> Result<()> where
W: 'writer + Write,
[src]
W: 'writer + Write,
Trait Implementations
impl<'v> ValueTrait for Value<'v>
[src]
type Map = Map<'v>
type Array = Vec<Value<'v>>
fn get(&self, k: &str) -> Option<&Value<'v>>
[src]
fn get_mut(&mut self, k: &str) -> Option<&mut Value<'v>>
[src]
fn kind(&self) -> ValueType
[src]
fn is_null(&self) -> bool
[src]
fn as_bool(&self) -> Option<bool>
[src]
fn as_i64(&self) -> Option<i64>
[src]
fn as_u64(&self) -> Option<u64>
[src]
fn as_f64(&self) -> Option<f64>
[src]
fn cast_f64(&self) -> Option<f64>
[src]
fn as_string(&self) -> Option<String>
[src]
fn as_array(&self) -> Option<&Vec<Value<'v>>>
[src]
fn as_array_mut(&mut self) -> Option<&mut Vec<Value<'v>>>
[src]
fn as_object(&self) -> Option<&Self::Map>
[src]
fn as_object_mut(&mut self) -> Option<&mut Self::Map>
[src]
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(&self) -> 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]
fn from(b: OwnedValue) -> Self
[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]
Value<'v>: From<S>,
impl<'_> From<Value<'_>> for Value
[src]
fn from(b: BorrowedValue) -> Self
[src]
impl<'a> PartialEq<()> for Value<'a>
[src]
fn eq(&self, _other: &()) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<bool> for Value<'a>
[src]
fn eq(&self, other: &bool) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<str> for Value<'a>
[src]
fn eq(&self, other: &str) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a, '_> PartialEq<&'_ str> for Value<'a>
[src]
fn eq(&self, other: &&str) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<String> for Value<'a>
[src]
fn eq(&self, other: &String) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<i8> for Value<'a>
[src]
fn eq(&self, other: &i8) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<i16> for Value<'a>
[src]
fn eq(&self, other: &i16) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<i32> for Value<'a>
[src]
fn eq(&self, other: &i32) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<i64> for Value<'a>
[src]
fn eq(&self, other: &i64) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<f32> for Value<'a>
[src]
fn eq(&self, other: &f32) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<f64> for Value<'a>
[src]
fn eq(&self, other: &f64) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.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.
fn index(&self, index: &str) -> &Value<'v>
[src]
impl<'v, V: Into<Value<'v>>> FromIterator<V> for Value<'v>
[src]
fn from_iter<I: IntoIterator<Item = V>>(iter: I) -> Self
[src]
impl<'v, K: Into<Cow<'v, str>>, V: Into<Value<'v>>> FromIterator<(K, V)> for Value<'v>
[src]
fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self
[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 deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_unit_struct<V>(
self,
name: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
self,
name: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
fn deserialize_newtype_struct<V>(
self,
name: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
self,
name: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_tuple<V>(
self,
len: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
self,
len: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
fn deserialize_tuple_struct<V>(
self,
name: &'static str,
len: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
self,
name: &'static str,
len: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_struct<V>(
self,
name: &'static str,
fields: &'static [&'static str],
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
self,
name: &'static str,
fields: &'static [&'static str],
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
fn deserialize_enum<V>(
self,
name: &'static str,
variants: &'static [&'static str],
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
self,
name: &'static str,
variants: &'static [&'static str],
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
V: Visitor<'de>,
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]
fn deserialize<D>(deserializer: D) -> Result<Value<'de>, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
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]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,