pub trait DriverRegistrarProxyInterface: Send + Sync {
    type RegisterResponseFut: Future<Output = Result<DriverRegistrarRegisterResult, Error>> + Send;

    // Required method
    fn register(&self, driver_url: &str) -> Self::RegisterResponseFut;
}

Required Associated Types§

Required Methods§

source

fn register(&self, driver_url: &str) -> Self::RegisterResponseFut

Implementors§