pub trait FuncExt {
// Required method
fn call_and_post_return(
&self,
store: impl AsContextMut,
params: &[Val],
results: &mut [Val],
) -> Result<()>;
}
Required Methods§
fn call_and_post_return( &self, store: impl AsContextMut, params: &[Val], results: &mut [Val], ) -> Result<()>
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.