You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JsBox<...> appears to implement Object, and Managed. Is there a reason that it doesn't also implement This also? The lack of This implementation currently makes it impossible to have a MethodContext<'_, JsBox<...>>, which is something that was previously possible with declare_type! { ... }.
The text was updated successfully, but these errors were encountered:
There's no reason it couldn't but it would not provide value. declare_type is not implemented for the Node-API backend and will not be (it is not very ergonomic and is unsound when used with workers).
JsBox<...>
appears to implementObject
, andManaged
. Is there a reason that it doesn't also implementThis
also? The lack ofThis
implementation currently makes it impossible to have aMethodContext<'_, JsBox<...>>
, which is something that was previously possible withdeclare_type! { ... }
.The text was updated successfully, but these errors were encountered: