pub trait AsyncTaskResult:
Any
+ Send
+ 'static {
// Required method
fn into_any(self: Box<Self>) -> Box<dyn Any>;
}Required Methods§
Implementations§
Implementors§
impl<T> AsyncTaskResult for T
Available on non-WebAssembly only.