Skip to main content

DriverRegistrarProxyInterface

Trait DriverRegistrarProxyInterface 

Source
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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§