Trait sciter::value::FromValue
[−]
[src]
pub trait FromValue {
fn from_value(v: &Value) -> Option<Self>
where
Self: Sized;
}Helper trait
Required Methods
fn from_value(v: &Value) -> Option<Self> where
Self: Sized,
Self: Sized,
Converts value to specified type.
Implementations on Foreign Types
impl FromValue for bool[src]
fn from_value(v: &Value) -> Option<Self>[src]
impl FromValue for i32[src]
fn from_value(v: &Value) -> Option<Self>[src]
impl FromValue for f64[src]
fn from_value(v: &Value) -> Option<Self>[src]
impl FromValue for Vec<u8>[src]
fn from_value(v: &Value) -> Option<Self>[src]
impl FromValue for String[src]
fn from_value(v: &Value) -> Option<Self>[src]
Implementors
impl FromValue for Value