pub trait CtxExtension<'js> {
// Required method
fn spawn_exit<F, R>(&self, future: F) -> Result<Receiver<R>>
where F: Future<Output = Result<R>> + 'js,
R: 'js;
}Required Methods§
fn spawn_exit<F, R>(&self, future: F) -> Result<Receiver<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.