pub unsafe trait WasmTy: Send { }
Expand description
A trait implemented for types which can be arguments and results for
closures passed to Func::wrap
as well as parameters to Func::typed
.
This trait should not be implemented by user types. This trait may change at any time internally. The types which implement this trait, however, are stable over time.
For more information see Func::wrap
and Func::typed