Trait TypedFuncExt

Source
pub trait TypedFuncExt<P, R> {
    // Required method
    fn call_and_post_return(
        &self,
        store: impl AsContextMut,
        params: P,
    ) -> Result<R>;
}

Required Methods§

Source

fn call_and_post_return(&self, store: impl AsContextMut, params: P) -> Result<R>

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<P, R> TypedFuncExt<P, R> for TypedFunc<P, R>
where P: ComponentNamedList + Lower, R: ComponentNamedList + Lift,

Source§

fn call_and_post_return(&self, store: impl AsContextMut, params: P) -> Result<R>

Implementors§