pub trait Value: ValueInternal {
    fn to_string<'a, C: Context<'a>>(&self, cx: &mut C) -> JsResult<'a, JsString> { ... }
    fn as_value<'a, C: Context<'a>>(&self, _: &mut C) -> Handle<'a, JsValue> { ... }
}
Expand description

The trait shared by all JavaScript values.

Provided Methods

Implementors