pub trait VMExternToExtern {
// Required method
fn to_extern(self, store: &mut impl AsStoreMut) -> Extern;
}Expand description
Trait convert a VMExtern to a Extern
Required Methods§
Sourcefn to_extern(self, store: &mut impl AsStoreMut) -> Extern
fn to_extern(self, store: &mut impl AsStoreMut) -> Extern
Convert to Extern
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.