[−][src]Enum simd_json::value::borrowed::Value
Borrowed JSON-DOM Value, consider using the ValueTrait
to access its content
Variants
Static(StaticNode)
Static values
string type
array type
object type
Implementations
impl<'v> Value<'v>
[src]
#[must_use]pub fn into_static(self) -> Value<'static>
[src]
Enforces static lifetime on a borrowed value, this will force all strings to become owned COW's, the same applies for Object keys.
#[must_use]pub fn clone_static(&self) -> Value<'static>
[src]
Clones the current value and enforces a static lifetime, it works the same
as into_static
but includes cloning logic
Trait Implementations
impl<'v> Builder<'v> for Value<'v>
[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<'v> Clone for Value<'v>
[src]
impl<'v> Debug for Value<'v>
[src]
impl<'v> Default for Value<'v>
[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>,
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_option<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>,
[src]
V: Visitor<'de>,
fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn deserialize_unit_struct<V>(
self,
name: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
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>,
[src]
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>,
[src]
V: Visitor<'de>,
fn deserialize_tuple<V>(
self,
len: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
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>,
[src]
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>,
[src]
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>,
[src]
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>,
[src]
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>,
[src]
V: Visitor<'de>,
fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor<'de>,
[src]
V: Visitor<'de>,
fn is_human_readable(&self) -> bool
[src]
impl<'v> Display for Value<'v>
[src]
impl<'v> From<&'v str> for Value<'v>
[src]
impl<'v> From<()> for Value<'v>
[src]
impl<'v> From<Cow<'v, str>> for Value<'v>
[src]
impl<'v> From<HashMap<Cow<'v, str>, Value<'v>, RandomState>> for Value<'v>
[src]
impl<'v, T> From<Option<T>> for Value<'v> where
Value<'v>: From<T>,
[src]
Value<'v>: From<T>,
impl<'v> From<StaticNode> for Value<'v>
[src]
#[must_use]fn from(s: StaticNode) -> Self
[src]
impl<'v> From<String> for Value<'v>
[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<'v, S> From<Vec<S>> for Value<'v> where
Value<'v>: From<S>,
[src]
Value<'v>: From<S>,
impl<'v> From<bool> for Value<'v>
[src]
impl<'v> From<f32> for Value<'v>
[src]
impl<'v> From<f64> 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<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<usize> for Value<'v>
[src]
impl<'v, K: Into<Cow<'v, str>>, V: Into<Value<'v>>> FromIterator<(K, V)> for Value<'v>
[src]
#[must_use]fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self
[src]
impl<'v, V: Into<Value<'v>>> FromIterator<V> for Value<'v>
[src]
#[must_use]fn from_iter<I: IntoIterator<Item = V>>(iter: I) -> Self
[src]
impl<'v, '_> Index<&'_ str> for Value<'v>
[src]
type Output = Value<'v>
The returned type after indexing.
#[must_use]fn index(&self, index: &str) -> &Self::Output
[src]
impl<'v> Index<usize> for Value<'v>
[src]
type Output = Value<'v>
The returned type after indexing.
#[must_use]fn index(&self, index: usize) -> &Self::Output
[src]
impl<'v, '_> IndexMut<&'_ str> for Value<'v>
[src]
impl<'v> IndexMut<usize> for Value<'v>
[src]
impl<'v> Mutable for Value<'v>
[src]
#[must_use]fn as_array_mut(&mut self) -> Option<&mut Vec<Value<'v>>>
[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 + Ord + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
[src]
Q: Hash + Eq + Ord + ?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 + Ord + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
[src]
Q: Hash + Eq + Ord + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
fn get_idx_mut(&mut self, i: usize) -> Option<&mut Self>
[src]
impl<'v, '_, T> PartialEq<&'_ T> for Value<'v> where
Value<'v>: PartialEq<T>,
[src]
Value<'v>: PartialEq<T>,
#[must_use]fn eq(&self, other: &&T) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v, '_> PartialEq<&'_ str> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &&str) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<()> for Value<'v>
[src]
#[must_use]fn eq(&self, _other: &()) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<String> for Value<'v>
[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<'a>> for Value<'a>
[src]
#[must_use]fn eq(&self, other: &Self) -> 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<'v> PartialEq<bool> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &bool) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<f32> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &f32) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<f64> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &f64) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<i128> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &i128) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<i16> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &i16) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<i32> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &i32) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<i64> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &i64) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<i8> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &i8) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<str> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &str) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<u128> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &u128) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<u16> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &u16) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<u32> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &u32) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<u64> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &u64) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<u8> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &u8) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'v> PartialEq<usize> for Value<'v>
[src]
#[must_use]fn eq(&self, other: &usize) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'a> Serialize for Value<'a>
[src]
impl<'value> TryFrom<Value> for BorrowedValue<'value>
[src]
type Error = SerdeConversionError
The type returned in the event of a conversion error.
fn try_from(item: Value) -> Result<Self, SerdeConversionError>
[src]
impl<'value> TryInto<Value> for BorrowedValue<'value>
[src]
type Error = SerdeConversionError
The type returned in the event of a conversion error.
fn try_into(self) -> Result<Value, SerdeConversionError>
[src]
impl<'v> Value for Value<'v>
[src]
type Key = Cow<'v, str>
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<Value<'v>>>
[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 + Ord + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
[src]
Q: Hash + Eq + Ord + ?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 + Ord + ?Sized,
Self::Key: Borrow<Q>,
Self::Key: Hash,
Self::Key: Eq,
[src]
Q: Hash + Eq + Ord + ?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_float(&self) -> bool
[src]
#[must_use]fn is_integer(&self) -> bool
[src]
#[must_use]fn is_number(&self) -> bool
[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<'value> Writable for Value<'value>
[src]
Auto Trait Implementations
impl<'v> RefUnwindSafe for Value<'v>
impl<'v> Send for Value<'v>
impl<'v> Sync for Value<'v>
impl<'v> Unpin for Value<'v>
impl<'v> UnwindSafe for Value<'v>
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> 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>,