pub trait IntoMakeClosure<T, Params, Results> {
// Required method
fn into_make_closure(
self,
) -> Box<dyn Fn(Rc<RefCell<T>>) -> (JsValue, DropHandle)>;
}
pub trait IntoMakeClosure<T, Params, Results> {
// Required method
fn into_make_closure(
self,
) -> Box<dyn Fn(Rc<RefCell<T>>) -> (JsValue, DropHandle)>;
}