pub trait TypedFuncExt<P, R> {
// Required method
fn call_and_post_return(
&self,
store: impl AsContextMut<Data: Send>,
params: P,
) -> Result<R>;
}
Required Methods§
fn call_and_post_return( &self, store: impl AsContextMut<Data: Send>, 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.