[−][src]Enum stdweb::Value
A type representing a JavaScript value.
This type implements a rich set of conversions from and into standard Rust types, for example:
let v1: Value = "Hello world!".into(); let v2: Value = true.into(); let v3: Value = vec![ 1, 2, 3 ].into(); let v4: Value = Null.into(); let v5: Value = 123_u64.try_into().unwrap(); let v1_r: String = v1.try_into().unwrap(); let v2_r: bool = v2.try_into().unwrap(); let v3_r: Vec< i32 > = v3.try_into().unwrap(); let v4_r: Option< String > = v4.try_into().unwrap(); // Will be `None`. let v5_r: u64 = v5.try_into().unwrap();
Variants
UndefinedNullBool(bool)Number(Number)Symbol(Symbol)String(String)Reference(Reference)Methods
impl Value[src]
impl Valuepub fn is_null(&self) -> bool | [src] |
Checks whenever the Value is of the Null variant.
pub fn is_symbol(&self) -> bool | [src] |
Checks whenever the Value is of the Symbol variant.
pub fn is_reference(&self) -> bool | [src] |
Checks whenever the Value is of the Reference variant.
pub fn is_object(&self) -> bool | [src] |
Checks whenever the Value is a reference to an Object.
pub fn is_array(&self) -> bool | [src] |
Checks whenever the Value is a reference to an Array.
pub fn as_reference(&self) -> Option<&Reference> | [src] |
Gets a reference to the Reference inside this Value.
pub fn as_object(&self) -> Option<&Object> | [src] |
Gets a reference to the Object inside this Value.
pub fn as_array(&self) -> Option<&Array> | [src] |
Gets a reference to the Array inside this Value.
pub fn into_reference(self) -> Option<Reference> | [src] |
Returns the Reference inside this Value.
pub fn into_object(self) -> Option<Object> | [src] |
Returns the Object inside this Value.
pub fn into_array(self) -> Option<Array> | [src] |
Returns the Array inside this Value.
pub unsafe fn into_reference_unchecked<T: ReferenceType>(self) -> Option<T> | [src] |
Converts a Reference inside this Value into
the given type T; doesn't check whenever the reference is really of type T.
In cases where the value is not a Reference a None is returned.
pub fn into_string(self) -> Option<String> | [src] |
Returns the String inside this Value.
pub fn as_str(&self) -> Option<&str> | [src] |
Returns a borrow of the string inside this Value.
Trait Implementations
impl JsSerialize for Value[src]
impl JsSerialize for Valueimpl TryFrom<i8> for Value[src]
impl TryFrom<i8> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: i8) -> Result<Self, Self::Error> | [src] |
impl TryFrom<i16> for Value[src]
impl TryFrom<i16> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: i16) -> Result<Self, Self::Error> | [src] |
impl TryFrom<i32> for Value[src]
impl TryFrom<i32> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: i32) -> Result<Self, Self::Error> | [src] |
impl TryFrom<u8> for Value[src]
impl TryFrom<u8> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: u8) -> Result<Self, Self::Error> | [src] |
impl TryFrom<u16> for Value[src]
impl TryFrom<u16> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: u16) -> Result<Self, Self::Error> | [src] |
impl TryFrom<u32> for Value[src]
impl TryFrom<u32> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: u32) -> Result<Self, Self::Error> | [src] |
impl TryFrom<f32> for Value[src]
impl TryFrom<f32> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: f32) -> Result<Self, Self::Error> | [src] |
impl TryFrom<f64> for Value[src]
impl TryFrom<f64> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: f64) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Value[src]
impl TryFrom<Value> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Undefined> for Value[src]
impl TryFrom<Undefined> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: Undefined) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a Undefined> for Value[src]
impl<'a> TryFrom<&'a Undefined> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a Undefined) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a mut Undefined> for Value[src]
impl<'a> TryFrom<&'a mut Undefined> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut Undefined) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Null> for Value[src]
impl TryFrom<Null> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: Null) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a Null> for Value[src]
impl<'a> TryFrom<&'a Null> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a Null) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a mut Null> for Value[src]
impl<'a> TryFrom<&'a mut Null> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut Null) -> Result<Self, Self::Error> | [src] |
impl TryFrom<bool> for Value[src]
impl TryFrom<bool> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: bool) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a bool> for Value[src]
impl<'a> TryFrom<&'a bool> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a bool) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a mut bool> for Value[src]
impl<'a> TryFrom<&'a mut bool> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut bool) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a str> for Value[src]
impl<'a> TryFrom<&'a str> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a str) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a mut str> for Value[src]
impl<'a> TryFrom<&'a mut str> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut str) -> Result<Self, Self::Error> | [src] |
impl TryFrom<String> for Value[src]
impl TryFrom<String> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: String) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a String> for Value[src]
impl<'a> TryFrom<&'a String> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a String) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a mut String> for Value[src]
impl<'a> TryFrom<&'a mut String> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut String) -> Result<Self, Self::Error> | [src] |
impl TryFrom<char> for Value[src]
impl TryFrom<char> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: char) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a char> for Value[src]
impl<'a> TryFrom<&'a char> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a char) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a mut char> for Value[src]
impl<'a> TryFrom<&'a mut char> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut char) -> Result<Self, Self::Error> | [src] |
impl<T> TryFrom<Vec<T>> for Value where
T: JsSerialize, [src]
impl<T> TryFrom<Vec<T>> for Value where
T: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: Vec<T>) -> Result<Self, Self::Error> | [src] |
impl<'a, T> TryFrom<&'a Vec<T>> for Value where
T: JsSerialize, [src]
impl<'a, T> TryFrom<&'a Vec<T>> for Value where
T: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a Vec<T>) -> Result<Self, Self::Error> | [src] |
impl<'a, T> TryFrom<&'a mut Vec<T>> for Value where
T: JsSerialize, [src]
impl<'a, T> TryFrom<&'a mut Vec<T>> for Value where
T: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut Vec<T>) -> Result<Self, Self::Error> | [src] |
impl<'a, T> TryFrom<&'a [T]> for Value where
T: JsSerialize, [src]
impl<'a, T> TryFrom<&'a [T]> for Value where
T: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a [T]) -> Result<Self, Self::Error> | [src] |
impl<'a, T> TryFrom<&'a mut [T]> for Value where
T: JsSerialize, [src]
impl<'a, T> TryFrom<&'a mut [T]> for Value where
T: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut [T]) -> Result<Self, Self::Error> | [src] |
impl<K, V> TryFrom<BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, [src]
impl<K, V> TryFrom<BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: BTreeMap<K, V>) -> Result<Self, Self::Error> | [src] |
impl<'a, K, V> TryFrom<&'a BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, [src]
impl<'a, K, V> TryFrom<&'a BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a BTreeMap<K, V>) -> Result<Self, Self::Error> | [src] |
impl<'a, K, V> TryFrom<&'a mut BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, [src]
impl<'a, K, V> TryFrom<&'a mut BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut BTreeMap<K, V>) -> Result<Self, Self::Error> | [src] |
impl<K, V> TryFrom<HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, [src]
impl<K, V> TryFrom<HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: HashMap<K, V>) -> Result<Self, Self::Error> | [src] |
impl<'a, K, V> TryFrom<&'a HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, [src]
impl<'a, K, V> TryFrom<&'a HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a HashMap<K, V>) -> Result<Self, Self::Error> | [src] |
impl<'a, K, V> TryFrom<&'a mut HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, [src]
impl<'a, K, V> TryFrom<&'a mut HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut HashMap<K, V>) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Symbol> for Value[src]
impl TryFrom<Symbol> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: Symbol) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Reference> for Value[src]
impl TryFrom<Reference> for Valuetype Error = Void
The type returned in the event of a conversion error.
fn try_from(source: Reference) -> Result<Self, Self::Error> | [src] |
impl TryFrom<i64> for Value[src]
impl TryFrom<i64> for Valuetype Error = <Number as TryFrom<i64>>::Error
The type returned in the event of a conversion error.
fn try_from(value: i64) -> Result<Self, Self::Error> | [src] |
impl TryFrom<u64> for Value[src]
impl TryFrom<u64> for Valuetype Error = <Number as TryFrom<u64>>::Error
The type returned in the event of a conversion error.
fn try_from(value: u64) -> Result<Self, Self::Error> | [src] |
impl TryFrom<usize> for Value[src]
impl TryFrom<usize> for Valuetype Error = <Number as TryFrom<usize>>::Error
The type returned in the event of a conversion error.
fn try_from(value: usize) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Undefined[src]
impl TryFrom<Value> for Undefinedtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Null[src]
impl TryFrom<Value> for Nulltype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ()[src]
impl TryFrom<Value> for ()type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for bool[src]
impl TryFrom<Value> for booltype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for u8[src]
impl TryFrom<Value> for u8type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for u16[src]
impl TryFrom<Value> for u16type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for u32[src]
impl TryFrom<Value> for u32type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for u64[src]
impl TryFrom<Value> for u64type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for usize[src]
impl TryFrom<Value> for usizetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for i8[src]
impl TryFrom<Value> for i8type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for i16[src]
impl TryFrom<Value> for i16type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for i32[src]
impl TryFrom<Value> for i32type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for i64[src]
impl TryFrom<Value> for i64type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for f64[src]
impl TryFrom<Value> for f64type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Value> for BTreeMap<String, V>[src]
impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Value> for BTreeMap<String, V>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Value> for HashMap<String, V>[src]
impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Value> for HashMap<String, V>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<E: Into<ConversionError>, T: TryFrom<Value, Error = E>> TryFrom<Value> for Vec<T>[src]
impl<E: Into<ConversionError>, T: TryFrom<Value, Error = E>> TryFrom<Value> for Vec<T>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for String[src]
impl TryFrom<Value> for Stringtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Symbol[src]
impl TryFrom<Value> for Symboltype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Reference[src]
impl TryFrom<Value> for Referencetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a Value> for &'a str[src]
impl<'a> TryFrom<&'a Value> for &'a strtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &'a Value) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a Value> for &'a Symbol[src]
impl<'a> TryFrom<&'a Value> for &'a Symboltype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &'a Value) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a Value> for &'a Reference[src]
impl<'a> TryFrom<&'a Value> for &'a Referencetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &'a Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<bool>[src]
impl TryFrom<Value> for Option<bool>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<u8>[src]
impl TryFrom<Value> for Option<u8>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<u16>[src]
impl TryFrom<Value> for Option<u16>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<u32>[src]
impl TryFrom<Value> for Option<u32>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<u64>[src]
impl TryFrom<Value> for Option<u64>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<usize>[src]
impl TryFrom<Value> for Option<usize>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<i8>[src]
impl TryFrom<Value> for Option<i8>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<i16>[src]
impl TryFrom<Value> for Option<i16>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<i32>[src]
impl TryFrom<Value> for Option<i32>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<i64>[src]
impl TryFrom<Value> for Option<i64>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<f64>[src]
impl TryFrom<Value> for Option<f64>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<V> TryFrom<Value> for Option<BTreeMap<String, V>> where
V: TryFrom<Value, Error = ConversionError>, [src]
impl<V> TryFrom<Value> for Option<BTreeMap<String, V>> where
V: TryFrom<Value, Error = ConversionError>, type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<V> TryFrom<Value> for Option<HashMap<String, V>> where
V: TryFrom<Value, Error = ConversionError>, [src]
impl<V> TryFrom<Value> for Option<HashMap<String, V>> where
V: TryFrom<Value, Error = ConversionError>, type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<T> TryFrom<Value> for Option<Vec<T>> where
T: TryFrom<Value, Error = ConversionError>, [src]
impl<T> TryFrom<Value> for Option<Vec<T>> where
T: TryFrom<Value, Error = ConversionError>, type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<String>[src]
impl TryFrom<Value> for Option<String>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Option<Symbol>[src]
impl TryFrom<Value> for Option<Symbol>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a Value> for Option<&'a str>[src]
impl<'a> TryFrom<&'a Value> for Option<&'a str>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &'a Value) -> Result<Self, Self::Error> | [src] |
impl<'a> TryFrom<&'a Value> for Option<&'a Reference>[src]
impl<'a> TryFrom<&'a Value> for Option<&'a Reference>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &'a Value) -> Result<Self, Self::Error> | [src] |
impl<T: TryFrom<Value, Error = ConversionError> + AsRef<Reference>> TryFrom<Value> for Option<T>[src]
impl<T: TryFrom<Value, Error = ConversionError> + AsRef<Reference>> TryFrom<Value> for Option<T>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Object[src]
impl TryFrom<Value> for Objecttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Object[src]
impl<'_r> TryFrom<&'_r Value> for Objecttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Array[src]
impl TryFrom<Value> for Arraytype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Array[src]
impl<'_r> TryFrom<&'_r Value> for Arraytype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Date[src]
impl TryFrom<Value> for Datetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Date[src]
impl<'_r> TryFrom<&'_r Value> for Datetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Document[src]
impl TryFrom<Value> for Documenttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Document[src]
impl<'_r> TryFrom<&'_r Value> for Documenttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Window[src]
impl TryFrom<Value> for Windowtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Window[src]
impl<'_r> TryFrom<&'_r Value> for Windowtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for EventTarget[src]
impl TryFrom<Value> for EventTargettype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for EventTarget[src]
impl<'_r> TryFrom<&'_r Value> for EventTargettype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Node[src]
impl TryFrom<Value> for Nodetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Node[src]
impl<'_r> TryFrom<&'_r Value> for Nodetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Element[src]
impl TryFrom<Value> for Elementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Element[src]
impl<'_r> TryFrom<&'_r Value> for Elementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Rect[src]
impl TryFrom<Value> for Recttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Rect[src]
impl<'_r> TryFrom<&'_r Value> for Recttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for HtmlElement[src]
impl TryFrom<Value> for HtmlElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for HtmlElement[src]
impl<'_r> TryFrom<&'_r Value> for HtmlElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for CanvasElement[src]
impl TryFrom<Value> for CanvasElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for CanvasElement[src]
impl<'_r> TryFrom<&'_r Value> for CanvasElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ImageElement[src]
impl TryFrom<Value> for ImageElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ImageElement[src]
impl<'_r> TryFrom<&'_r Value> for ImageElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for InputElement[src]
impl TryFrom<Value> for InputElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for InputElement[src]
impl<'_r> TryFrom<&'_r Value> for InputElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TextAreaElement[src]
impl TryFrom<Value> for TextAreaElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TextAreaElement[src]
impl<'_r> TryFrom<&'_r Value> for TextAreaElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SelectElement[src]
impl TryFrom<Value> for SelectElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SelectElement[src]
impl<'_r> TryFrom<&'_r Value> for SelectElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for OptionElement[src]
impl TryFrom<Value> for OptionElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for OptionElement[src]
impl<'_r> TryFrom<&'_r Value> for OptionElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TemplateElement[src]
impl TryFrom<Value> for TemplateElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TemplateElement[src]
impl<'_r> TryFrom<&'_r Value> for TemplateElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SlotElement[src]
impl TryFrom<Value> for SlotElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SlotElement[src]
impl<'_r> TryFrom<&'_r Value> for SlotElementtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TokenList[src]
impl TryFrom<Value> for TokenListtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TokenList[src]
impl<'_r> TryFrom<&'_r Value> for TokenListtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DocumentFragment[src]
impl TryFrom<Value> for DocumentFragmenttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DocumentFragment[src]
impl<'_r> TryFrom<&'_r Value> for DocumentFragmenttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TextNode[src]
impl TryFrom<Value> for TextNodetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TextNode[src]
impl<'_r> TryFrom<&'_r Value> for TextNodetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for NodeList[src]
impl TryFrom<Value> for NodeListtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for NodeList[src]
impl<'_r> TryFrom<&'_r Value> for NodeListtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for StringMap[src]
impl TryFrom<Value> for StringMaptype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for StringMap[src]
impl<'_r> TryFrom<&'_r Value> for StringMaptype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Location[src]
impl TryFrom<Value> for Locationtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Location[src]
impl<'_r> TryFrom<&'_r Value> for Locationtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Storage[src]
impl TryFrom<Value> for Storagetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Storage[src]
impl<'_r> TryFrom<&'_r Value> for Storagetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Blob[src]
impl TryFrom<Value> for Blobtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Blob[src]
impl<'_r> TryFrom<&'_r Value> for Blobtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for FileList[src]
impl TryFrom<Value> for FileListtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for FileList[src]
impl<'_r> TryFrom<&'_r Value> for FileListtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for FileReader[src]
impl TryFrom<Value> for FileReadertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for FileReader[src]
impl<'_r> TryFrom<&'_r Value> for FileReadertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ArrayBuffer[src]
impl TryFrom<Value> for ArrayBuffertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ArrayBuffer[src]
impl<'_r> TryFrom<&'_r Value> for ArrayBuffertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl<T: ArrayKind> TryFrom<Value> for TypedArray<T>[src]
impl<T: ArrayKind> TryFrom<Value> for TypedArray<T>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r, T: ArrayKind> TryFrom<&'_r Value> for TypedArray<T>[src]
impl<'_r, T: ArrayKind> TryFrom<&'_r Value> for TypedArray<T>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for XmlHttpRequest[src]
impl TryFrom<Value> for XmlHttpRequesttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for XmlHttpRequest[src]
impl<'_r> TryFrom<&'_r Value> for XmlHttpRequesttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for XhrSetResponseTypeError[src]
impl TryFrom<Value> for XhrSetResponseTypeErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for History[src]
impl TryFrom<Value> for Historytype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for History[src]
impl<'_r> TryFrom<&'_r Value> for Historytype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for WebSocket[src]
impl TryFrom<Value> for WebSockettype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for WebSocket[src]
impl<'_r> TryFrom<&'_r Value> for WebSockettype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SocketReadyState[src]
impl TryFrom<Value> for SocketReadyStatetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(v: Value) -> Result<SocketReadyState, ConversionError> | [src] |
Performs the conversion.
impl TryFrom<Value> for CanvasRenderingContext2d[src]
impl TryFrom<Value> for CanvasRenderingContext2dtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for CanvasRenderingContext2d[src]
impl<'_r> TryFrom<&'_r Value> for CanvasRenderingContext2dtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for CanvasGradient[src]
impl TryFrom<Value> for CanvasGradienttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for CanvasGradient[src]
impl<'_r> TryFrom<&'_r Value> for CanvasGradienttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for CanvasPattern[src]
impl TryFrom<Value> for CanvasPatterntype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for CanvasPattern[src]
impl<'_r> TryFrom<&'_r Value> for CanvasPatterntype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ImageData[src]
impl TryFrom<Value> for ImageDatatype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ImageData[src]
impl<'_r> TryFrom<&'_r Value> for ImageDatatype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TextMetrics[src]
impl TryFrom<Value> for TextMetricstype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TextMetrics[src]
impl<'_r> TryFrom<&'_r Value> for TextMetricstype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for AddColorStopError[src]
impl TryFrom<Value> for AddColorStopErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DrawImageError[src]
impl TryFrom<Value> for DrawImageErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for GetImageDataError[src]
impl TryFrom<Value> for GetImageDataErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for CanvasStyle[src]
impl TryFrom<Value> for CanvasStyletype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
Performs the conversion.
impl TryFrom<Value> for MutationObserver[src]
impl TryFrom<Value> for MutationObservertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MutationObserver[src]
impl<'_r> TryFrom<&'_r Value> for MutationObservertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MutationRecord[src]
impl TryFrom<Value> for MutationRecordtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(v: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Error[src]
impl TryFrom<Value> for Errortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Error[src]
impl<'_r> TryFrom<&'_r Value> for Errortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TypeError[src]
impl TryFrom<Value> for TypeErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TypeError[src]
impl<'_r> TryFrom<&'_r Value> for TypeErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Touch[src]
impl TryFrom<Value> for Touchtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Touch[src]
impl<'_r> TryFrom<&'_r Value> for Touchtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TouchType[src]
impl TryFrom<Value> for TouchTypetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(v: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DomException[src]
impl TryFrom<Value> for DomExceptiontype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DomException[src]
impl<'_r> TryFrom<&'_r Value> for DomExceptiontype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for HierarchyRequestError[src]
impl TryFrom<Value> for HierarchyRequestErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for HierarchyRequestError[src]
impl<'_r> TryFrom<&'_r Value> for HierarchyRequestErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for InvalidAccessError[src]
impl TryFrom<Value> for InvalidAccessErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for InvalidAccessError[src]
impl<'_r> TryFrom<&'_r Value> for InvalidAccessErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for NotFoundError[src]
impl TryFrom<Value> for NotFoundErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for NotFoundError[src]
impl<'_r> TryFrom<&'_r Value> for NotFoundErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SecurityError[src]
impl TryFrom<Value> for SecurityErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SecurityError[src]
impl<'_r> TryFrom<&'_r Value> for SecurityErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SyntaxError[src]
impl TryFrom<Value> for SyntaxErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SyntaxError[src]
impl<'_r> TryFrom<&'_r Value> for SyntaxErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for IndexSizeError[src]
impl TryFrom<Value> for IndexSizeErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for IndexSizeError[src]
impl<'_r> TryFrom<&'_r Value> for IndexSizeErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for InvalidStateError[src]
impl TryFrom<Value> for InvalidStateErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for InvalidStateError[src]
impl<'_r> TryFrom<&'_r Value> for InvalidStateErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for NotSupportedError[src]
impl TryFrom<Value> for NotSupportedErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for NotSupportedError[src]
impl<'_r> TryFrom<&'_r Value> for NotSupportedErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for InvalidCharacterError[src]
impl TryFrom<Value> for InvalidCharacterErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for InvalidCharacterError[src]
impl<'_r> TryFrom<&'_r Value> for InvalidCharacterErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for AbortError[src]
impl TryFrom<Value> for AbortErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for AbortError[src]
impl<'_r> TryFrom<&'_r Value> for AbortErrortype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ChangeEvent[src]
impl TryFrom<Value> for ChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ChangeEvent[src]
impl<'_r> TryFrom<&'_r Value> for ChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for InputEvent[src]
impl TryFrom<Value> for InputEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for InputEvent[src]
impl<'_r> TryFrom<&'_r Value> for InputEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ResourceLoadEvent[src]
impl TryFrom<Value> for ResourceLoadEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ResourceLoadEvent[src]
impl<'_r> TryFrom<&'_r Value> for ResourceLoadEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ResourceAbortEvent[src]
impl TryFrom<Value> for ResourceAbortEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ResourceAbortEvent[src]
impl<'_r> TryFrom<&'_r Value> for ResourceAbortEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ResourceErrorEvent[src]
impl TryFrom<Value> for ResourceErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ResourceErrorEvent[src]
impl<'_r> TryFrom<&'_r Value> for ResourceErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ResizeEvent[src]
impl TryFrom<Value> for ResizeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ResizeEvent[src]
impl<'_r> TryFrom<&'_r Value> for ResizeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ScrollEvent[src]
impl TryFrom<Value> for ScrollEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ScrollEvent[src]
impl<'_r> TryFrom<&'_r Value> for ScrollEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ReadyStateChangeEvent[src]
impl TryFrom<Value> for ReadyStateChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ReadyStateChangeEvent[src]
impl<'_r> TryFrom<&'_r Value> for ReadyStateChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SubmitEvent[src]
impl TryFrom<Value> for SubmitEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SubmitEvent[src]
impl<'_r> TryFrom<&'_r Value> for SubmitEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SelectionChangeEvent[src]
impl TryFrom<Value> for SelectionChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SelectionChangeEvent[src]
impl<'_r> TryFrom<&'_r Value> for SelectionChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragRelatedEvent[src]
impl TryFrom<Value> for DragRelatedEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragRelatedEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragRelatedEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragEvent[src]
impl TryFrom<Value> for DragEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragStartEvent[src]
impl TryFrom<Value> for DragStartEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragStartEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragStartEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragEnterEvent[src]
impl TryFrom<Value> for DragEnterEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragEnterEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragEnterEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragExitEvent[src]
impl TryFrom<Value> for DragExitEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragExitEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragExitEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragLeaveEvent[src]
impl TryFrom<Value> for DragLeaveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragLeaveEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragLeaveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragOverEvent[src]
impl TryFrom<Value> for DragOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragOverEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragDropEvent[src]
impl TryFrom<Value> for DragDropEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragDropEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragDropEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DragEndEvent[src]
impl TryFrom<Value> for DragEndEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DragEndEvent[src]
impl<'_r> TryFrom<&'_r Value> for DragEndEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DataTransfer[src]
impl TryFrom<Value> for DataTransfertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DataTransfer[src]
impl<'_r> TryFrom<&'_r Value> for DataTransfertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DataTransferItemList[src]
impl TryFrom<Value> for DataTransferItemListtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DataTransferItemList[src]
impl<'_r> TryFrom<&'_r Value> for DataTransferItemListtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DataTransferItem[src]
impl TryFrom<Value> for DataTransferItemtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DataTransferItem[src]
impl<'_r> TryFrom<&'_r Value> for DataTransferItemtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for FocusEvent[src]
impl TryFrom<Value> for FocusEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for FocusEvent[src]
impl<'_r> TryFrom<&'_r Value> for FocusEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for BlurEvent[src]
impl TryFrom<Value> for BlurEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for BlurEvent[src]
impl<'_r> TryFrom<&'_r Value> for BlurEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for GamepadConnectedEvent[src]
impl TryFrom<Value> for GamepadConnectedEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for GamepadConnectedEvent[src]
impl<'_r> TryFrom<&'_r Value> for GamepadConnectedEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for GamepadDisconnectedEvent[src]
impl TryFrom<Value> for GamepadDisconnectedEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for GamepadDisconnectedEvent[src]
impl<'_r> TryFrom<&'_r Value> for GamepadDisconnectedEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for HashChangeEvent[src]
impl TryFrom<Value> for HashChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for HashChangeEvent[src]
impl<'_r> TryFrom<&'_r Value> for HashChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PopStateEvent[src]
impl TryFrom<Value> for PopStateEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PopStateEvent[src]
impl<'_r> TryFrom<&'_r Value> for PopStateEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for KeyPressEvent[src]
impl TryFrom<Value> for KeyPressEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for KeyPressEvent[src]
impl<'_r> TryFrom<&'_r Value> for KeyPressEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for KeyDownEvent[src]
impl TryFrom<Value> for KeyDownEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for KeyDownEvent[src]
impl<'_r> TryFrom<&'_r Value> for KeyDownEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for KeyUpEvent[src]
impl TryFrom<Value> for KeyUpEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for KeyUpEvent[src]
impl<'_r> TryFrom<&'_r Value> for KeyUpEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ClickEvent[src]
impl TryFrom<Value> for ClickEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ClickEvent[src]
impl<'_r> TryFrom<&'_r Value> for ClickEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for AuxClickEvent[src]
impl TryFrom<Value> for AuxClickEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for AuxClickEvent[src]
impl<'_r> TryFrom<&'_r Value> for AuxClickEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ContextMenuEvent[src]
impl TryFrom<Value> for ContextMenuEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ContextMenuEvent[src]
impl<'_r> TryFrom<&'_r Value> for ContextMenuEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for DoubleClickEvent[src]
impl TryFrom<Value> for DoubleClickEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for DoubleClickEvent[src]
impl<'_r> TryFrom<&'_r Value> for DoubleClickEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MouseDownEvent[src]
impl TryFrom<Value> for MouseDownEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MouseDownEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseDownEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MouseUpEvent[src]
impl TryFrom<Value> for MouseUpEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MouseUpEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseUpEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MouseMoveEvent[src]
impl TryFrom<Value> for MouseMoveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MouseMoveEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseMoveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MouseOverEvent[src]
impl TryFrom<Value> for MouseOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MouseOverEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MouseOutEvent[src]
impl TryFrom<Value> for MouseOutEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MouseOutEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseOutEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MouseEnterEvent[src]
impl TryFrom<Value> for MouseEnterEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MouseEnterEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseEnterEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MouseLeaveEvent[src]
impl TryFrom<Value> for MouseLeaveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MouseLeaveEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseLeaveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for MouseWheelEvent[src]
impl TryFrom<Value> for MouseWheelEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for MouseWheelEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseWheelEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerOverEvent[src]
impl TryFrom<Value> for PointerOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerOverEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerEnterEvent[src]
impl TryFrom<Value> for PointerEnterEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerEnterEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerEnterEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerDownEvent[src]
impl TryFrom<Value> for PointerDownEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerDownEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerDownEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerMoveEvent[src]
impl TryFrom<Value> for PointerMoveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerMoveEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerMoveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerUpEvent[src]
impl TryFrom<Value> for PointerUpEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerUpEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerUpEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerCancelEvent[src]
impl TryFrom<Value> for PointerCancelEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerCancelEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerCancelEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerOutEvent[src]
impl TryFrom<Value> for PointerOutEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerOutEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerOutEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerLeaveEvent[src]
impl TryFrom<Value> for PointerLeaveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerLeaveEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerLeaveEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for GotPointerCaptureEvent[src]
impl TryFrom<Value> for GotPointerCaptureEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for GotPointerCaptureEvent[src]
impl<'_r> TryFrom<&'_r Value> for GotPointerCaptureEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for LostPointerCaptureEvent[src]
impl TryFrom<Value> for LostPointerCaptureEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for LostPointerCaptureEvent[src]
impl<'_r> TryFrom<&'_r Value> for LostPointerCaptureEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerLockChangeEvent[src]
impl TryFrom<Value> for PointerLockChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerLockChangeEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerLockChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for PointerLockErrorEvent[src]
impl TryFrom<Value> for PointerLockErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for PointerLockErrorEvent[src]
impl<'_r> TryFrom<&'_r Value> for PointerLockErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ProgressEvent[src]
impl TryFrom<Value> for ProgressEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ProgressEvent[src]
impl<'_r> TryFrom<&'_r Value> for ProgressEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ProgressLoadEvent[src]
impl TryFrom<Value> for ProgressLoadEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ProgressLoadEvent[src]
impl<'_r> TryFrom<&'_r Value> for ProgressLoadEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for LoadStartEvent[src]
impl TryFrom<Value> for LoadStartEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for LoadStartEvent[src]
impl<'_r> TryFrom<&'_r Value> for LoadStartEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for LoadEndEvent[src]
impl TryFrom<Value> for LoadEndEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for LoadEndEvent[src]
impl<'_r> TryFrom<&'_r Value> for LoadEndEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ProgressAbortEvent[src]
impl TryFrom<Value> for ProgressAbortEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ProgressAbortEvent[src]
impl<'_r> TryFrom<&'_r Value> for ProgressAbortEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ProgressErrorEvent[src]
impl TryFrom<Value> for ProgressErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ProgressErrorEvent[src]
impl<'_r> TryFrom<&'_r Value> for ProgressErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SocketCloseEvent[src]
impl TryFrom<Value> for SocketCloseEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SocketCloseEvent[src]
impl<'_r> TryFrom<&'_r Value> for SocketCloseEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SocketErrorEvent[src]
impl TryFrom<Value> for SocketErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SocketErrorEvent[src]
impl<'_r> TryFrom<&'_r Value> for SocketErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SocketOpenEvent[src]
impl TryFrom<Value> for SocketOpenEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SocketOpenEvent[src]
impl<'_r> TryFrom<&'_r Value> for SocketOpenEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SocketMessageData[src]
impl TryFrom<Value> for SocketMessageDatatype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(v: Value) -> Result<SocketMessageData, ConversionError> | [src] |
impl TryFrom<Value> for SocketMessageEvent[src]
impl TryFrom<Value> for SocketMessageEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SocketMessageEvent[src]
impl<'_r> TryFrom<&'_r Value> for SocketMessageEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for SlotChangeEvent[src]
impl TryFrom<Value> for SlotChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for SlotChangeEvent[src]
impl<'_r> TryFrom<&'_r Value> for SlotChangeEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TouchEvent[src]
impl TryFrom<Value> for TouchEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TouchEvent[src]
impl<'_r> TryFrom<&'_r Value> for TouchEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TouchMove[src]
impl TryFrom<Value> for TouchMovetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TouchMove[src]
impl<'_r> TryFrom<&'_r Value> for TouchMovetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TouchLeave[src]
impl TryFrom<Value> for TouchLeavetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TouchLeave[src]
impl<'_r> TryFrom<&'_r Value> for TouchLeavetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TouchEnter[src]
impl TryFrom<Value> for TouchEntertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TouchEnter[src]
impl<'_r> TryFrom<&'_r Value> for TouchEntertype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TouchEnd[src]
impl TryFrom<Value> for TouchEndtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TouchEnd[src]
impl<'_r> TryFrom<&'_r Value> for TouchEndtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TouchCancel[src]
impl TryFrom<Value> for TouchCanceltype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TouchCancel[src]
impl<'_r> TryFrom<&'_r Value> for TouchCanceltype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for TouchStart[src]
impl TryFrom<Value> for TouchStarttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for TouchStart[src]
impl<'_r> TryFrom<&'_r Value> for TouchStarttype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for HtmlCollection[src]
impl TryFrom<Value> for HtmlCollectiontype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for HtmlCollection[src]
impl<'_r> TryFrom<&'_r Value> for HtmlCollectiontype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for GamepadMappingType[src]
impl TryFrom<Value> for GamepadMappingTypetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(v: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for GamepadButton[src]
impl TryFrom<Value> for GamepadButtontype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for GamepadButton[src]
impl<'_r> TryFrom<&'_r Value> for GamepadButtontype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Gamepad[src]
impl TryFrom<Value> for Gamepadtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Gamepad[src]
impl<'_r> TryFrom<&'_r Value> for Gamepadtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Selection[src]
impl TryFrom<Value> for Selectiontype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for Selection[src]
impl<'_r> TryFrom<&'_r Value> for Selectiontype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for ShadowRoot[src]
impl TryFrom<Value> for ShadowRoottype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for ShadowRoot[src]
impl<'_r> TryFrom<&'_r Value> for ShadowRoottype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl<T: Serialize> TryFrom<Serde<T>> for Value[src]
impl<T: Serialize> TryFrom<Serde<T>> for Valuetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Serde<T>) -> Result<Self, Self::Error> | [src] |
impl<'a, T: Serialize> TryFrom<&'a Serde<T>> for Value[src]
impl<'a, T: Serialize> TryFrom<&'a Serde<T>> for Valuetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &'a Serde<T>) -> Result<Self, Self::Error> | [src] |
impl<'a, T: Serialize> TryFrom<&'a mut Serde<T>> for Value[src]
impl<'a, T: Serialize> TryFrom<&'a mut Serde<T>> for Valuetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &'a mut Serde<T>) -> Result<Self, Self::Error> | [src] |
impl<'de, T: Deserialize<'de>> TryFrom<Value> for Serde<T>[src]
impl<'de, T: Deserialize<'de>> TryFrom<Value> for Serde<T>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'de, T: Deserialize<'de>> TryFrom<Value> for Option<Serde<T>>[src]
impl<'de, T: Deserialize<'de>> TryFrom<Value> for Option<Serde<T>>type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for Value[src]
impl TryFrom<Value> for Valuetype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: JsonValue) -> Result<Self, Self::Error> | [src] |
impl From<Undefined> for Value[src]
impl From<Undefined> for Valueimpl<'a> From<&'a Undefined> for Value[src]
impl<'a> From<&'a Undefined> for Valueimpl<'a> From<&'a mut Undefined> for Value[src]
impl<'a> From<&'a mut Undefined> for Valueimpl From<Null> for Value[src]
impl From<Null> for Valueimpl<'a> From<&'a Null> for Value[src]
impl<'a> From<&'a Null> for Valueimpl<'a> From<&'a mut Null> for Value[src]
impl<'a> From<&'a mut Null> for Valueimpl From<bool> for Value[src]
impl From<bool> for Valueimpl<'a> From<&'a bool> for Value[src]
impl<'a> From<&'a bool> for Valueimpl<'a> From<&'a mut bool> for Value[src]
impl<'a> From<&'a mut bool> for Valueimpl<'a> From<&'a str> for Value[src]
impl<'a> From<&'a str> for Valueimpl<'a> From<&'a mut str> for Value[src]
impl<'a> From<&'a mut str> for Valueimpl From<String> for Value[src]
impl From<String> for Valueimpl<'a> From<&'a String> for Value[src]
impl<'a> From<&'a String> for Valueimpl<'a> From<&'a mut String> for Value[src]
impl<'a> From<&'a mut String> for Valueimpl From<char> for Value[src]
impl From<char> for Valueimpl<'a> From<&'a char> for Value[src]
impl<'a> From<&'a char> for Valueimpl<'a> From<&'a mut char> for Value[src]
impl<'a> From<&'a mut char> for Valueimpl<T> From<Vec<T>> for Value where
T: JsSerialize, [src]
impl<T> From<Vec<T>> for Value where
T: JsSerialize, impl<'a, T> From<&'a Vec<T>> for Value where
T: JsSerialize, [src]
impl<'a, T> From<&'a Vec<T>> for Value where
T: JsSerialize, impl<'a, T> From<&'a mut Vec<T>> for Value where
T: JsSerialize, [src]
impl<'a, T> From<&'a mut Vec<T>> for Value where
T: JsSerialize, impl<'a, T> From<&'a [T]> for Value where
T: JsSerialize, [src]
impl<'a, T> From<&'a [T]> for Value where
T: JsSerialize, impl<'a, T> From<&'a mut [T]> for Value where
T: JsSerialize, [src]
impl<'a, T> From<&'a mut [T]> for Value where
T: JsSerialize, fn from(value: &'a mut [T]) -> Self | [src] |
impl<K, V> From<BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, [src]
impl<K, V> From<BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, impl<'a, K, V> From<&'a BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, [src]
impl<'a, K, V> From<&'a BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, impl<'a, K, V> From<&'a mut BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, [src]
impl<'a, K, V> From<&'a mut BTreeMap<K, V>> for Value where
K: AsRef<str>,
V: JsSerialize, impl<K, V> From<HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, [src]
impl<K, V> From<HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, impl<'a, K, V> From<&'a HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, [src]
impl<'a, K, V> From<&'a HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, impl<'a, K, V> From<&'a mut HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, [src]
impl<'a, K, V> From<&'a mut HashMap<K, V, RandomState>> for Value where
K: AsRef<str> + Eq + Hash,
V: JsSerialize, impl From<Reference> for Value[src]
impl From<Reference> for Valueimpl<'a> From<&'a Reference> for Value[src]
impl<'a> From<&'a Reference> for Valueimpl<'a> From<&'a mut Reference> for Value[src]
impl<'a> From<&'a mut Reference> for Valueimpl From<i8> for Value[src]
impl From<i8> for Valueimpl<'a> From<&'a i8> for Value[src]
impl<'a> From<&'a i8> for Valueimpl<'a> From<&'a mut i8> for Value[src]
impl<'a> From<&'a mut i8> for Valueimpl From<i16> for Value[src]
impl From<i16> for Valueimpl<'a> From<&'a i16> for Value[src]
impl<'a> From<&'a i16> for Valueimpl<'a> From<&'a mut i16> for Value[src]
impl<'a> From<&'a mut i16> for Valueimpl From<i32> for Value[src]
impl From<i32> for Valueimpl<'a> From<&'a i32> for Value[src]
impl<'a> From<&'a i32> for Valueimpl<'a> From<&'a mut i32> for Value[src]
impl<'a> From<&'a mut i32> for Valueimpl From<u8> for Value[src]
impl From<u8> for Valueimpl<'a> From<&'a u8> for Value[src]
impl<'a> From<&'a u8> for Valueimpl<'a> From<&'a mut u8> for Value[src]
impl<'a> From<&'a mut u8> for Valueimpl From<u16> for Value[src]
impl From<u16> for Valueimpl<'a> From<&'a u16> for Value[src]
impl<'a> From<&'a u16> for Valueimpl<'a> From<&'a mut u16> for Value[src]
impl<'a> From<&'a mut u16> for Valueimpl From<u32> for Value[src]
impl From<u32> for Valueimpl<'a> From<&'a u32> for Value[src]
impl<'a> From<&'a u32> for Valueimpl<'a> From<&'a mut u32> for Value[src]
impl<'a> From<&'a mut u32> for Valueimpl From<f32> for Value[src]
impl From<f32> for Valueimpl<'a> From<&'a f32> for Value[src]
impl<'a> From<&'a f32> for Valueimpl<'a> From<&'a mut f32> for Value[src]
impl<'a> From<&'a mut f32> for Valueimpl From<f64> for Value[src]
impl From<f64> for Valueimpl<'a> From<&'a f64> for Value[src]
impl<'a> From<&'a f64> for Valueimpl<'a> From<&'a mut f64> for Value[src]
impl<'a> From<&'a mut f64> for Valueimpl From<Symbol> for Value[src]
impl From<Symbol> for Valueimpl PartialEq<Value> for Value[src]
impl PartialEq<Value> for Valueimpl PartialEq<Undefined> for Value[src]
impl PartialEq<Undefined> for Valuefn eq(&self, _: &Undefined) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Null> for Value[src]
impl PartialEq<Null> for Valuefn eq(&self, _: &Null) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<bool> for Value[src]
impl PartialEq<bool> for Valuefn eq(&self, right: &bool) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<str> for Value[src]
impl PartialEq<str> for Valuefn eq(&self, right: &str) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<String> for Value[src]
impl PartialEq<String> for Valuefn eq(&self, right: &String) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Number> for Value[src]
impl PartialEq<Number> for Valuefn eq(&self, right: &Number) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Symbol> for Value[src]
impl PartialEq<Symbol> for Valuefn eq(&self, right: &Symbol) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<T: AsRef<Reference>> PartialEq<T> for Value[src]
impl<T: AsRef<Reference>> PartialEq<T> for Valuefn eq(&self, right: &T) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Reference> for &'a Value[src]
impl<'a> PartialEq<Reference> for &'a Valuefn eq(&self, right: &Reference) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for Reference[src]
impl PartialEq<Value> for Referencefn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for Reference[src]
impl<'a> PartialEq<&'a Value> for Referencefn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a Reference[src]
impl<'a> PartialEq<Value> for &'a Referencefn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<i8> for Value[src]
impl PartialEq<i8> for Valuefn eq(&self, right: &i8) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a i8> for Value[src]
impl<'a> PartialEq<&'a i8> for Valuefn eq(&self, right: &&'a i8) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<i8> for &'a Value[src]
impl<'a> PartialEq<i8> for &'a Valuefn eq(&self, right: &i8) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for i8[src]
impl PartialEq<Value> for i8fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for i8[src]
impl<'a> PartialEq<&'a Value> for i8fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a i8[src]
impl<'a> PartialEq<Value> for &'a i8fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<i16> for Value[src]
impl PartialEq<i16> for Valuefn eq(&self, right: &i16) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a i16> for Value[src]
impl<'a> PartialEq<&'a i16> for Valuefn eq(&self, right: &&'a i16) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<i16> for &'a Value[src]
impl<'a> PartialEq<i16> for &'a Valuefn eq(&self, right: &i16) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for i16[src]
impl PartialEq<Value> for i16fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for i16[src]
impl<'a> PartialEq<&'a Value> for i16fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a i16[src]
impl<'a> PartialEq<Value> for &'a i16fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<i32> for Value[src]
impl PartialEq<i32> for Valuefn eq(&self, right: &i32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a i32> for Value[src]
impl<'a> PartialEq<&'a i32> for Valuefn eq(&self, right: &&'a i32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<i32> for &'a Value[src]
impl<'a> PartialEq<i32> for &'a Valuefn eq(&self, right: &i32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for i32[src]
impl PartialEq<Value> for i32fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for i32[src]
impl<'a> PartialEq<&'a Value> for i32fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a i32[src]
impl<'a> PartialEq<Value> for &'a i32fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<i64> for Value[src]
impl PartialEq<i64> for Valuefn eq(&self, right: &i64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a i64> for Value[src]
impl<'a> PartialEq<&'a i64> for Valuefn eq(&self, right: &&'a i64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<i64> for &'a Value[src]
impl<'a> PartialEq<i64> for &'a Valuefn eq(&self, right: &i64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for i64[src]
impl PartialEq<Value> for i64fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for i64[src]
impl<'a> PartialEq<&'a Value> for i64fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a i64[src]
impl<'a> PartialEq<Value> for &'a i64fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<u8> for Value[src]
impl PartialEq<u8> for Valuefn eq(&self, right: &u8) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a u8> for Value[src]
impl<'a> PartialEq<&'a u8> for Valuefn eq(&self, right: &&'a u8) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<u8> for &'a Value[src]
impl<'a> PartialEq<u8> for &'a Valuefn eq(&self, right: &u8) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for u8[src]
impl PartialEq<Value> for u8fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for u8[src]
impl<'a> PartialEq<&'a Value> for u8fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a u8[src]
impl<'a> PartialEq<Value> for &'a u8fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<u16> for Value[src]
impl PartialEq<u16> for Valuefn eq(&self, right: &u16) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a u16> for Value[src]
impl<'a> PartialEq<&'a u16> for Valuefn eq(&self, right: &&'a u16) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<u16> for &'a Value[src]
impl<'a> PartialEq<u16> for &'a Valuefn eq(&self, right: &u16) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for u16[src]
impl PartialEq<Value> for u16fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for u16[src]
impl<'a> PartialEq<&'a Value> for u16fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a u16[src]
impl<'a> PartialEq<Value> for &'a u16fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<u32> for Value[src]
impl PartialEq<u32> for Valuefn eq(&self, right: &u32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a u32> for Value[src]
impl<'a> PartialEq<&'a u32> for Valuefn eq(&self, right: &&'a u32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<u32> for &'a Value[src]
impl<'a> PartialEq<u32> for &'a Valuefn eq(&self, right: &u32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for u32[src]
impl PartialEq<Value> for u32fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for u32[src]
impl<'a> PartialEq<&'a Value> for u32fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a u32[src]
impl<'a> PartialEq<Value> for &'a u32fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<u64> for Value[src]
impl PartialEq<u64> for Valuefn eq(&self, right: &u64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a u64> for Value[src]
impl<'a> PartialEq<&'a u64> for Valuefn eq(&self, right: &&'a u64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<u64> for &'a Value[src]
impl<'a> PartialEq<u64> for &'a Valuefn eq(&self, right: &u64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for u64[src]
impl PartialEq<Value> for u64fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for u64[src]
impl<'a> PartialEq<&'a Value> for u64fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a u64[src]
impl<'a> PartialEq<Value> for &'a u64fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<usize> for Value[src]
impl PartialEq<usize> for Valuefn eq(&self, right: &usize) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a usize> for Value[src]
impl<'a> PartialEq<&'a usize> for Valuefn eq(&self, right: &&'a usize) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<usize> for &'a Value[src]
impl<'a> PartialEq<usize> for &'a Valuefn eq(&self, right: &usize) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for usize[src]
impl PartialEq<Value> for usizefn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for usize[src]
impl<'a> PartialEq<&'a Value> for usizefn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a usize[src]
impl<'a> PartialEq<Value> for &'a usizefn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<f32> for Value[src]
impl PartialEq<f32> for Valuefn eq(&self, right: &f32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a f32> for Value[src]
impl<'a> PartialEq<&'a f32> for Valuefn eq(&self, right: &&'a f32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<f32> for &'a Value[src]
impl<'a> PartialEq<f32> for &'a Valuefn eq(&self, right: &f32) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for f32[src]
impl PartialEq<Value> for f32fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for f32[src]
impl<'a> PartialEq<&'a Value> for f32fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a f32[src]
impl<'a> PartialEq<Value> for &'a f32fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<f64> for Value[src]
impl PartialEq<f64> for Valuefn eq(&self, right: &f64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a f64> for Value[src]
impl<'a> PartialEq<&'a f64> for Valuefn eq(&self, right: &&'a f64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<f64> for &'a Value[src]
impl<'a> PartialEq<f64> for &'a Valuefn eq(&self, right: &f64) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for f64[src]
impl PartialEq<Value> for f64fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for f64[src]
impl<'a> PartialEq<&'a Value> for f64fn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a f64[src]
impl<'a> PartialEq<Value> for &'a f64fn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Undefined> for Value[src]
impl<'a> PartialEq<&'a Undefined> for Valuefn eq(&self, right: &&'a Undefined) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Undefined> for &'a Value[src]
impl<'a> PartialEq<Undefined> for &'a Valuefn eq(&self, right: &Undefined) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for Undefined[src]
impl PartialEq<Value> for Undefinedfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for Undefined[src]
impl<'a> PartialEq<&'a Value> for Undefinedfn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a Undefined[src]
impl<'a> PartialEq<Value> for &'a Undefinedfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Null> for Value[src]
impl<'a> PartialEq<&'a Null> for Valuefn eq(&self, right: &&'a Null) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Null> for &'a Value[src]
impl<'a> PartialEq<Null> for &'a Valuefn eq(&self, right: &Null) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for Null[src]
impl PartialEq<Value> for Nullfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for Null[src]
impl<'a> PartialEq<&'a Value> for Nullfn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a Null[src]
impl<'a> PartialEq<Value> for &'a Nullfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a bool> for Value[src]
impl<'a> PartialEq<&'a bool> for Valuefn eq(&self, right: &&'a bool) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<bool> for &'a Value[src]
impl<'a> PartialEq<bool> for &'a Valuefn eq(&self, right: &bool) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for bool[src]
impl PartialEq<Value> for boolfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for bool[src]
impl<'a> PartialEq<&'a Value> for boolfn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a bool[src]
impl<'a> PartialEq<Value> for &'a boolfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a str> for Value[src]
impl<'a> PartialEq<&'a str> for Valuefn eq(&self, right: &&'a str) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<str> for &'a Value[src]
impl<'a> PartialEq<str> for &'a Valuefn eq(&self, right: &str) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for str[src]
impl PartialEq<Value> for strfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for str[src]
impl<'a> PartialEq<&'a Value> for strfn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a str[src]
impl<'a> PartialEq<Value> for &'a strfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a String> for Value[src]
impl<'a> PartialEq<&'a String> for Valuefn eq(&self, right: &&'a String) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<String> for &'a Value[src]
impl<'a> PartialEq<String> for &'a Valuefn eq(&self, right: &String) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for String[src]
impl PartialEq<Value> for Stringfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for String[src]
impl<'a> PartialEq<&'a Value> for Stringfn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a String[src]
impl<'a> PartialEq<Value> for &'a Stringfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Number> for Value[src]
impl<'a> PartialEq<&'a Number> for Valuefn eq(&self, right: &&'a Number) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Number> for &'a Value[src]
impl<'a> PartialEq<Number> for &'a Valuefn eq(&self, right: &Number) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for Number[src]
impl PartialEq<Value> for Numberfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for Number[src]
impl<'a> PartialEq<&'a Value> for Numberfn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a Number[src]
impl<'a> PartialEq<Value> for &'a Numberfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Symbol> for Value[src]
impl<'a> PartialEq<&'a Symbol> for Valuefn eq(&self, right: &&'a Symbol) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Symbol> for &'a Value[src]
impl<'a> PartialEq<Symbol> for &'a Valuefn eq(&self, right: &Symbol) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl PartialEq<Value> for Symbol[src]
impl PartialEq<Value> for Symbolfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<&'a Value> for Symbol[src]
impl<'a> PartialEq<&'a Value> for Symbolfn eq(&self, right: &&'a Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl<'a> PartialEq<Value> for &'a Symbol[src]
impl<'a> PartialEq<Value> for &'a Symbolfn eq(&self, right: &Value) -> bool | [src] |
| 1.0.0 [src] |
This method tests for !=.
impl AsRef<Value> for Value[src]
impl AsRef<Value> for Valueimpl Clone for Value[src]
impl Clone for Valuefn clone(&self) -> Value | [src] |
fn clone_from(&mut self, source: &Self) | 1.0.0 [src] |
Performs copy-assignment from source. Read more
impl Debug for Value[src]
impl Debug for Valueimpl Serialize for Value[src]
impl Serialize for Valueimpl<'de> Deserializer<'de> for Value[src]
impl<'de> Deserializer<'de> for Valuetype Error = ConversionError
The error type that can be returned if some error occurs during deserialization. Read more
fn deserialize_any<V: Visitor<'de>>( | [src] |
fn deserialize_i8<V: Visitor<'de>>( | [src] |
fn deserialize_i16<V: Visitor<'de>>( | [src] |
fn deserialize_i32<V: Visitor<'de>>( | [src] |
fn deserialize_i64<V: Visitor<'de>>( | [src] |
fn deserialize_u8<V: Visitor<'de>>( | [src] |
fn deserialize_u16<V: Visitor<'de>>( | [src] |
fn deserialize_u32<V: Visitor<'de>>( | [src] |
fn deserialize_u64<V: Visitor<'de>>( | [src] |
fn deserialize_f32<V: Visitor<'de>>( | [src] |
fn deserialize_f64<V: Visitor<'de>>( | [src] |
fn deserialize_option<V: Visitor<'de>>( | [src] |
fn deserialize_enum<V: Visitor<'de>>( | [src] |
fn deserialize_newtype_struct<V: Visitor<'de>>( | [src] |
fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_unit_struct<V>( |
fn deserialize_tuple_struct<V>( |
fn deserialize_struct<V>( |
fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_tuple<V>( |
fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error> where |
fn deserialize_i128<V>( | [src] |
Hint that the Deserialize type is expecting an i128 value. Read more
fn deserialize_u128<V>( | [src] |
Hint that the Deserialize type is expecting an u128 value. Read more
fn is_human_readable(&self) -> bool | [src] |
Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more
impl<'de> Deserialize<'de> for Value[src]
impl<'de> Deserialize<'de> for Valuefn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> | [src] |
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)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> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId | [src] |
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,