[−][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
null
Bool(bool)
boolean type
F64(f64)
float type
I64(i64)
integer type
String(String)
string type
array type
Object(Object)
object type
Methods
impl Value
[src]
pub fn to_string(&self) -> String
[src]
Please use encode instead
Encodes the value into it's JSON representation as a string
pub fn encode(&self) -> String
[src]
Encodes the value into it's JSON representation as a string
pub fn to_string_pp(&self) -> String
[src]
Please use encode instead
Encodes the value into it's JSON representation as a string (pretty printed)
pub fn encode_pp(&self) -> String
[src]
Encodes the value into it's JSON representation as a string (pretty printed)
pub fn write<'writer, W>(&self, w: &mut W) -> Result<()> where
W: 'writer + Write,
[src]
W: 'writer + Write,
Encodes the value into it's JSON representation into a Writer
pub fn write_pp<'writer, W>(&self, w: &mut W) -> Result<()> where
W: 'writer + Write,
[src]
W: 'writer + Write,
Encodes the value into it's JSON representation into a Writer, pretty printed
Trait Implementations
impl ValueTrait for Value
[src]
type Object = Object
The type for Objects
type Array = Vec<Self>
Tye type for Arrays
fn get(&self, k: &str) -> Option<&Self>
[src]
fn get_mut(&mut self, k: &str) -> Option<&mut Self>
[src]
fn get_idx(&self, i: usize) -> Option<&Self>
[src]
fn get_idx_mut(&mut self, i: usize) -> Option<&mut Self>
[src]
fn value_type(&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_str(&self) -> Option<&str>
[src]
fn as_array(&self) -> Option<&Vec<Self>>
[src]
fn as_array_mut(&mut self) -> Option<&mut Vec<Self>>
[src]
fn as_object(&self) -> Option<&Self::Object>
[src]
fn as_object_mut(&mut self) -> Option<&mut Self::Object>
[src]
fn kind(&self) -> ValueType
[src]
fn is_bool(&self) -> bool
[src]
fn as_i128(&self) -> Option<i128>
[src]
fn is_i128(&self) -> bool
[src]
fn is_i64(&self) -> bool
[src]
fn as_i32(&self) -> Option<i32>
[src]
fn is_i32(&self) -> bool
[src]
fn as_i16(&self) -> Option<i16>
[src]
fn is_i16(&self) -> bool
[src]
fn as_i8(&self) -> Option<i8>
[src]
fn is_i8(&self) -> bool
[src]
fn as_u128(&self) -> Option<u128>
[src]
fn is_u128(&self) -> bool
[src]
fn is_u64(&self) -> bool
[src]
fn as_usize(&self) -> Option<usize>
[src]
fn is_usize(&self) -> bool
[src]
fn as_u32(&self) -> Option<u32>
[src]
fn is_u32(&self) -> bool
[src]
fn as_u16(&self) -> Option<u16>
[src]
fn is_u16(&self) -> bool
[src]
fn as_u8(&self) -> Option<u8>
[src]
fn is_u8(&self) -> bool
[src]
fn is_f64(&self) -> bool
[src]
fn is_f64_castable(&self) -> bool
[src]
fn as_f32(&self) -> Option<f32>
[src]
fn is_f32(&self) -> bool
[src]
fn is_string(&self) -> bool
[src]
fn is_str(&self) -> bool
[src]
fn is_array(&self) -> bool
[src]
fn is_object(&self) -> bool
[src]
impl Default for Value
[src]
impl Clone for Value
[src]
impl PartialEq<()> for Value
[src]
impl PartialEq<bool> for Value
[src]
impl PartialEq<str> for Value
[src]
impl<'_> PartialEq<&'_ str> for Value
[src]
impl PartialEq<String> for Value
[src]
impl PartialEq<i8> for Value
[src]
impl PartialEq<i16> for Value
[src]
impl PartialEq<i32> for Value
[src]
impl PartialEq<i64> for Value
[src]
impl PartialEq<f32> for Value
[src]
impl PartialEq<f64> for Value
[src]
impl PartialEq<Value> for Value
[src]
impl<'a> From<Value> for Value<'a>
[src]
fn from(b: OwnedValue) -> Self
[src]
impl<'_> From<Value<'_>> for Value
[src]
fn from(b: BorrowedValue) -> Self
[src]
impl<'_> From<&'_ str> for Value
[src]
impl<'v> From<Cow<'v, str>> for Value
[src]
impl From<String> for Value
[src]
impl<'_> From<&'_ String> for Value
[src]
impl From<bool> for Value
[src]
impl From<()> for Value
[src]
impl From<i8> 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<&'_ i16> for Value
[src]
impl<'_> From<&'_ i32> for Value
[src]
impl<'_> From<&'_ i64> for Value
[src]
impl From<u8> 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<&'_ u16> for Value
[src]
impl<'_> From<&'_ u32> for Value
[src]
impl<'_> From<&'_ u64> for Value
[src]
impl From<f32> for Value
[src]
impl From<f64> for Value
[src]
impl<'_> From<&'_ f32> for Value
[src]
impl<'_> From<&'_ f64> for Value
[src]
impl<S> From<Vec<S>> for Value where
Value: From<S>,
[src]
Value: From<S>,
impl<'_> Index<&'_ str> for Value
[src]
impl Debug for Value
[src]
impl Display 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<V: Into<Value>> FromIterator<V> for Value
[src]
fn from_iter<I: IntoIterator<Item = V>>(iter: I) -> Self
[src]
impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value
[src]
fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self
[src]
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 Serialize 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>,
Auto Trait Implementations
impl Send for Value
impl Unpin for Value
impl Sync for Value
impl UnwindSafe for Value
impl RefUnwindSafe for Value
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, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for 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>,
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,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,