pub trait TryIntoJsArguments {
// Required method
fn into_js_args(self, cx: &mut Context) -> JsResult<Vec<JsValue>>;
}Expand description
A trait for converting a tuple of Rust values into a vector of JsValue,
to be used as arguments for a JavaScript function.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".