[−][src]Enum simd_json::value::owned::Value
Owned JSON-DOM Value, consider using the ValueTrait
to access it's content.
This is slower then the BorrowedValue
as a tradeoff
for getting rid of lifetimes.
Variants
Static(StaticNode)
Static values
String(String)
string type
array type
object type
Trait Implementations
impl<'b> Builder<'b> for Value
[src]
#[must_use]
fn null() -> Self
[src]
#[must_use]
fn array_with_capacity(capacity: usize) -> Self
[src]
#[must_use]
fn object_with_capacity(capacity: usize) -> Self
[src]
#[must_use]
fn array() -> Self
[src]
#[must_use]
fn object() -> Self
[src]
impl Clone for Value
[src]
impl Debug for Value
[src]
impl Default for Value
[src]
impl<'de> Deserialize<'de> for Value
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl<'de> Deserializer<'de> for Value
[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]
impl Display for Value
[src]
impl<'_> From<&'_ String> for Value
[src]
impl<'_> From<&'_ str> for Value
[src]
impl From<()> for Value
[src]
impl<'v> From<Cow<'v, str>> for Value
[src]
impl From<HashMap<String, Value, RandomState>> for Value
[src]
impl From<HashMap<String, Value, RandomState>> for Value
[src]
impl From<StaticNode> for Value
[src]
#[must_use]
fn from(s: StaticNode) -> Self
[src]
impl From<String> for Value
[src]
impl<'_> From<Value<'_>> for Value
[src]
#[must_use]
fn from(b: BorrowedValue) -> Self
[src]
impl<'a> From<Value> for Value<'a>
[src]
#[must_use]
fn from(b: OwnedValue) -> Self
[src]
impl<S> From<Vec<S>> for Value where
Value: From<S>,
[src]
Value: From<S>,
impl From<bool> for Value
[src]
impl From<f32> for Value
[src]
impl From<f64> for Value
[src]
impl From<i16> for Value
[src]
impl From<i32> for Value
[src]
impl From<i64> for Value
[src]
impl From<i8> for Value
[src]
impl From<u16> for Value
[src]
impl From<u32> for Value
[src]
impl From<u64> for Value
[src]
impl From<u8> for Value
[src]
impl From<usize> for Value
[src]
impl<K: ToString, V: Into<Value>> FromIterator<(K, V)> for Value
[src]
#[must_use]
fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self
[src]
impl<V: Into<Value>> FromIterator<V> for Value
[src]
#[must_use]
fn from_iter<I: IntoIterator<Item = V>>(iter: I) -> Self
[src]
impl<'_> Index<&'_ str> for Value
[src]
type Output = Self
The returned type after indexing.
#[must_use]
fn index(&self, index: &str) -> &Self::Output
[src]
impl Index<usize> for Value
[src]
type Output = Self
The returned type after indexing.
#[must_use]
fn index(&self, index: usize) -> &Self::Output
[src]
impl<'_> IndexMut<&'_ str> for Value
[src]
impl IndexMut<usize> for Value
[src]
impl Mutable for Value
[src]
#[must_use]
fn as_array_mut(&mut self) -> Option<&mut Vec<Self>>
[src]
#[must_use]
fn as_object_mut(&mut self) -> Option<&mut HashMap<Self::Key, Self>>
[src]
fn insert<K, V>(&mut self, k: K, v: V) -> Result<Option<Self>, AccessError> where
K: Into<Self::Key>,
V: Into<Self>,
Self::Key: Hash,
Self::Key: Eq,
[src]
K: Into<Self::Key>,
V: Into<Self>,
Self::Key: Hash,
Self::Key: Eq,
fn remove<Q>(&mut self, k: &Q) -> Result<Option<Self>, AccessError> where
Q: Hash + Eq + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
[src]
Q: Hash + Eq + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
fn push<V>(&mut self, v: V) -> Result<(), AccessError> where
V: Into<Self>,
[src]
V: Into<Self>,
fn pop(&mut self) -> Result<Option<Self>, AccessError>
[src]
fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self> where
Q: Hash + Eq + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
[src]
Q: Hash + Eq + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
fn get_idx_mut(&mut self, i: usize) -> Option<&mut Self>
[src]
impl<'_, T> PartialEq<&'_ T> for Value where
Value: PartialEq<T>,
[src]
Value: PartialEq<T>,
#[must_use]
fn eq(&self, other: &&T) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<&'_ str> for Value
[src]
#[must_use]
fn eq(&self, other: &&str) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<()> for Value
[src]
#[must_use]
fn eq(&self, _other: &()) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<String> for Value
[src]
#[must_use]
fn eq(&self, other: &String) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<Value<'_>> for Value
[src]
#[must_use]
fn eq(&self, other: &BorrowedValue) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'a> PartialEq<Value> for Value<'a>
[src]
#[must_use]
fn eq(&self, other: &OwnedValue) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<Value> for Value
[src]
#[must_use]
fn eq(&self, other: &Self) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<bool> for Value
[src]
#[must_use]
fn eq(&self, other: &bool) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<f32> for Value
[src]
#[must_use]
fn eq(&self, other: &f32) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<f64> for Value
[src]
#[must_use]
fn eq(&self, other: &f64) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<i128> for Value
[src]
#[must_use]
fn eq(&self, other: &i128) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<i16> for Value
[src]
#[must_use]
fn eq(&self, other: &i16) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<i32> for Value
[src]
#[must_use]
fn eq(&self, other: &i32) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<i64> for Value
[src]
#[must_use]
fn eq(&self, other: &i64) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<i8> for Value
[src]
#[must_use]
fn eq(&self, other: &i8) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<str> for Value
[src]
#[must_use]
fn eq(&self, other: &str) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<u128> for Value
[src]
#[must_use]
fn eq(&self, other: &u128) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<u16> for Value
[src]
#[must_use]
fn eq(&self, other: &u16) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<u32> for Value
[src]
#[must_use]
fn eq(&self, other: &u32) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<u64> for Value
[src]
#[must_use]
fn eq(&self, other: &u64) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<u8> for Value
[src]
#[must_use]
fn eq(&self, other: &u8) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<usize> for Value
[src]
#[must_use]
fn eq(&self, other: &usize) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl Serialize for Value
[src]
impl TryFrom<Value> for OwnedValue
[src]
type Error = SerdeConversionError
The type returned in the event of a conversion error.
fn try_from(item: Value) -> Result<Self, SerdeConversionError>
[src]
impl TryInto<Value> for OwnedValue
[src]
type Error = SerdeConversionError
The type returned in the event of a conversion error.
fn try_into(self) -> Result<Value, SerdeConversionError>
[src]
impl Value for Value
[src]
type Key = String
The type for Objects
type Array = Vec<Self>
The array structure
type Object = HashMap<Self::Key, Self>
The object structure
#[must_use]
fn value_type(&self) -> ValueType
[src]
#[must_use]
fn is_null(&self) -> bool
[src]
#[must_use]
fn as_bool(&self) -> Option<bool>
[src]
#[must_use]
fn as_i64(&self) -> Option<i64>
[src]
#[must_use]
fn as_i128(&self) -> Option<i128>
[src]
#[must_use]
fn as_u64(&self) -> Option<u64>
[src]
#[must_use]
fn as_f64(&self) -> Option<f64>
[src]
#[must_use]
fn cast_f64(&self) -> Option<f64>
[src]
#[must_use]
fn as_str(&self) -> Option<&str>
[src]
#[must_use]
fn as_array(&self) -> Option<&Vec<Self>>
[src]
#[must_use]
fn as_object(&self) -> Option<&HashMap<Self::Key, Self>>
[src]
#[must_use]
fn get<Q>(&self, k: &Q) -> Option<&Self> where
Q: Hash + Eq + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
[src]
Q: Hash + Eq + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
#[must_use]
fn contains_key<Q>(&self, k: &Q) -> bool where
Q: Hash + Eq + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
[src]
Q: Hash + Eq + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
#[must_use]
fn get_idx(&self, i: usize) -> Option<&Self>
[src]
#[must_use]
fn is_bool(&self) -> bool
[src]
#[must_use]
fn is_i128(&self) -> bool
[src]
#[must_use]
fn is_i64(&self) -> bool
[src]
#[must_use]
fn as_i32(&self) -> Option<i32>
[src]
#[must_use]
fn is_i32(&self) -> bool
[src]
#[must_use]
fn as_i16(&self) -> Option<i16>
[src]
#[must_use]
fn is_i16(&self) -> bool
[src]
#[must_use]
fn as_i8(&self) -> Option<i8>
[src]
#[must_use]
fn is_i8(&self) -> bool
[src]
#[must_use]
fn as_u128(&self) -> Option<u128>
[src]
#[must_use]
fn is_u128(&self) -> bool
[src]
#[must_use]
fn is_u64(&self) -> bool
[src]
#[must_use]
fn as_usize(&self) -> Option<usize>
[src]
#[must_use]
fn is_usize(&self) -> bool
[src]
#[must_use]
fn as_u32(&self) -> Option<u32>
[src]
#[must_use]
fn is_u32(&self) -> bool
[src]
#[must_use]
fn as_u16(&self) -> Option<u16>
[src]
#[must_use]
fn is_u16(&self) -> bool
[src]
#[must_use]
fn as_u8(&self) -> Option<u8>
[src]
#[must_use]
fn is_u8(&self) -> bool
[src]
#[must_use]
fn is_f64(&self) -> bool
[src]
#[must_use]
fn is_f64_castable(&self) -> bool
[src]
#[must_use]
fn as_f32(&self) -> Option<f32>
[src]
#[must_use]
fn is_f32(&self) -> bool
[src]
#[must_use]
fn is_str(&self) -> bool
[src]
#[must_use]
fn is_array(&self) -> bool
[src]
#[must_use]
fn is_object(&self) -> bool
[src]
impl Writable for Value
[src]
Auto Trait Implementations
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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> 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>,