Trait boa::js::value::FromValue

source ·
pub trait FromValue {
    fn from_value(value: Value) -> Result<Self, &'static str>
    where
        Self: Sized
; }
Expand description

Conversion to Rust values from Javascript values

Required Methods

Convert this value to a Javascript value

Implementations on Foreign Types

Implementors