Trait FuncExt

Source
pub trait FuncExt {
    // Required method
    fn call_and_post_return(
        &self,
        store: impl AsContextMut,
        params: &[Val],
        results: &mut [Val],
    ) -> Result<()>;
}

Required Methods§

Source

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.

Implementations on Foreign Types§

Source§

impl FuncExt for Func

Source§

fn call_and_post_return( &self, store: impl AsContextMut, params: &[Val], results: &mut [Val], ) -> Result<()>

Implementors§