[][src]Trait simd_json::value::ValueTrait

pub trait ValueTrait: From<i8> + From<i16> + From<i32> + From<i64> + From<u8> + From<u16> + From<u32> + From<u64> + From<f32> + From<f64> + From<String> + From<bool> + From<()> {
    type Object;
    type Array;
    fn get(&self, k: &str) -> Option<&Self>;
fn get_mut(&mut self, k: &str) -> Option<&mut Self>;
fn get_idx(&self, i: usize) -> Option<&Self>;
fn get_idx_mut(&mut self, i: usize) -> Option<&mut Self>;
fn value_type(&self) -> ValueType;
fn is_null(&self) -> bool;
fn as_bool(&self) -> Option<bool>;
fn as_i64(&self) -> Option<i64>;
fn as_f64(&self) -> Option<f64>;
fn cast_f64(&self) -> Option<f64>;
fn as_string(&self) -> Option<String>;
fn as_str(&self) -> Option<&str>;
fn as_array(&self) -> Option<&Self::Array>;
fn as_array_mut(&mut self) -> Option<&mut Self::Array>;
fn as_object(&self) -> Option<&Self::Object>;
fn as_object_mut(&mut self) -> Option<&mut Self::Object>; fn kind(&self) -> ValueType { ... }
fn is_bool(&self) -> bool { ... }
fn as_i128(&self) -> Option<i128> { ... }
fn is_i128(&self) -> bool { ... }
fn is_i64(&self) -> bool { ... }
fn as_i32(&self) -> Option<i32> { ... }
fn is_i32(&self) -> bool { ... }
fn as_i16(&self) -> Option<i16> { ... }
fn is_i16(&self) -> bool { ... }
fn as_i8(&self) -> Option<i8> { ... }
fn is_i8(&self) -> bool { ... }
fn as_u128(&self) -> Option<u128> { ... }
fn is_u128(&self) -> bool { ... }
fn as_u64(&self) -> Option<u64> { ... }
fn is_u64(&self) -> bool { ... }
fn as_usize(&self) -> Option<usize> { ... }
fn is_usize(&self) -> bool { ... }
fn as_u32(&self) -> Option<u32> { ... }
fn is_u32(&self) -> bool { ... }
fn as_u16(&self) -> Option<u16> { ... }
fn is_u16(&self) -> bool { ... }
fn as_u8(&self) -> Option<u8> { ... }
fn is_u8(&self) -> bool { ... }
fn is_f64(&self) -> bool { ... }
fn is_f64_castable(&self) -> bool { ... }
fn as_f32(&self) -> Option<f32> { ... }
fn is_f32(&self) -> bool { ... }
fn is_string(&self) -> bool { ... }
fn is_str(&self) -> bool { ... }
fn is_array(&self) -> bool { ... }
fn is_object(&self) -> bool { ... } }

The ValueTrait exposes common interface for values, this allows using both BorrowedValue and OwnedValue nearly interchangable

Associated Types

type Object

The type for Objects

type Array

Tye type for Arrays

Loading content...

Required methods

fn get(&self, k: &str) -> Option<&Self>

Gets a ref to a value based on a key, returns None if the current Value isn't an Object or doesn't contain the key it was asked for.

fn get_mut(&mut self, k: &str) -> Option<&mut Self>

Same as get but returns a mutable ref instead

fn get_idx(&self, i: usize) -> Option<&Self>

Gets a ref to a value based on n index, returns None if the current Value isn't an Array or doesn't contain the index it was asked for.

fn get_idx_mut(&mut self, i: usize) -> Option<&mut Self>

Same as get_idx but returns a mutable ref instead

fn value_type(&self) -> ValueType

Returns the type of the current Valye

fn is_null(&self) -> bool

returns true if the current value is null

fn as_bool(&self) -> Option<bool>

Tries to represent the value as a bool

fn as_i64(&self) -> Option<i64>

Tries to represent the value as an i64

fn as_f64(&self) -> Option<f64>

Tries to represent the value as a f64

fn cast_f64(&self) -> Option<f64>

Casts the current value to a f64 if possible, this will turn integer values into floats.

fn as_string(&self) -> Option<String>

Deprecated since 0.1.20:

This will allocate a new string please use as_str instead

Tries to represent the value as a String

fn as_str(&self) -> Option<&str>

Tries to represent the value as a &str

fn as_array(&self) -> Option<&Self::Array>

Tries to represent the value as an array and returns a refference to it

fn as_array_mut(&mut self) -> Option<&mut Self::Array>

Tries to represent the value as an array and returns a mutable refference to it

fn as_object(&self) -> Option<&Self::Object>

Tries to represent the value as an object and returns a refference to it

fn as_object_mut(&mut self) -> Option<&mut Self::Object>

Tries to represent the value as an object and returns a mutable refference to it

Loading content...

Provided methods

fn kind(&self) -> ValueType

Deprecated since 0.1.21:

please use value_type instead

Returns the type of the current Valye

fn is_bool(&self) -> bool

returns true if the current value a bool

fn as_i128(&self) -> Option<i128>

Tries to represent the value as an i128

fn is_i128(&self) -> bool

returns true if the current value can be represented as a i128

fn is_i64(&self) -> bool

returns true if the current value can be represented as a i64

fn as_i32(&self) -> Option<i32>

Tries to represent the value as an i32

fn is_i32(&self) -> bool

returns true if the current value can be represented as a i32

fn as_i16(&self) -> Option<i16>

Tries to represent the value as an i16

fn is_i16(&self) -> bool

returns true if the current value can be represented as a i16

fn as_i8(&self) -> Option<i8>

Tries to represent the value as an i8

fn is_i8(&self) -> bool

returns true if the current value can be represented as a i8

fn as_u128(&self) -> Option<u128>

Tries to represent the value as an u128

fn is_u128(&self) -> bool

returns true if the current value can be represented as a u128

fn as_u64(&self) -> Option<u64>

Tries to represent the value as an u64

fn is_u64(&self) -> bool

returns true if the current value can be represented as a u64

fn as_usize(&self) -> Option<usize>

Tries to represent the value as an usize

fn is_usize(&self) -> bool

returns true if the current value can be represented as a usize

fn as_u32(&self) -> Option<u32>

Tries to represent the value as an u32

fn is_u32(&self) -> bool

returns true if the current value can be represented as a u32

fn as_u16(&self) -> Option<u16>

Tries to represent the value as an u16

fn is_u16(&self) -> bool

returns true if the current value can be represented as a u16

fn as_u8(&self) -> Option<u8>

Tries to represent the value as an u8

fn is_u8(&self) -> bool

returns true if the current value can be represented as a u8

fn is_f64(&self) -> bool

returns true if the current value can be represented as a f64

fn is_f64_castable(&self) -> bool

returns true if the current value can be cast into a f64

fn as_f32(&self) -> Option<f32>

Tries to represent the value as a f32

fn is_f32(&self) -> bool

returns true if the current value can be represented as a f64

fn is_string(&self) -> bool

Deprecated since 0.1.20:

Please use is_str instead

returns true if the current value can be represented as a String

fn is_str(&self) -> bool

returns true if the current value can be represented as a str

fn is_array(&self) -> bool

returns true if the current value can be represented as an array

fn is_object(&self) -> bool

returns true if the current value can be represented as an object

Loading content...

Implementors

impl ValueTrait for simd_json::value::owned::Value[src]

type Object = Object

type Array = Vec<Self>

impl<'v> ValueTrait for simd_json::value::borrowed::Value<'v>[src]

type Object = Object<'v>

type Array = Vec<Value<'v>>

Loading content...