Skip to main content

WithWorkerHandle

Trait WithWorkerHandle 

Source
pub trait WithWorkerHandle<H>: Sized {
    // Required method
    fn with_worker_handle(self, handle: H) -> WithWorkerHandleFuture<Self, H> ;
}

Required Methods§

Source

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.

Implementors§

Source§

impl<F: Future, H: WorkerHandleType> WithWorkerHandle<H> for F