pub trait ToArgs {
type Js: AsRef<JsValue>;
// Required method
fn to_args(self) -> Self::Js;
}
Expand description
Types that can be represented as arguments.
pub trait ToArgs {
type Js: AsRef<JsValue>;
// Required method
fn to_args(self) -> Self::Js;
}
Types that can be represented as arguments.