pub trait WorkerToCoordinator {
    // Required method
    fn ping(&self, client: WorkerClient) -> impl Future<Output = String> + Send;
}

Required Methods§

source

fn ping(&self, client: WorkerClient) -> impl Future<Output = String> + Send

Object Safety§

This trait is not object safe.

Implementors§