pub trait WithWorkerHandle<H>: Sized {
// Required method
fn with_worker_handle(self, handle: H) -> WithWorkerHandleFuture<Self, H> ⓘ;
}Required Methods§
fn with_worker_handle(self, handle: H) -> WithWorkerHandleFuture<Self, H> ⓘ
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.