pub trait IntoJs {
// Required method
fn into_js(self, js_env: &JsEnv) -> *mut napi_value__;
}Expand description
convert to js including error
Required Methods§
fn into_js(self, js_env: &JsEnv) -> *mut napi_value__
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".