pub trait DriverConnector {
    // Required methods
    fn get_driver_development_proxy<'life0, 'async_trait>(
        &'life0 self,
        select: bool
    ) -> Pin<Box<dyn Future<Output = Result<ManagerProxy>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_dev_proxy<'life0, 'async_trait>(
        &'life0 self,
        select: bool
    ) -> Pin<Box<dyn Future<Output = Result<DirectoryProxy>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_driver_registrar_proxy<'life0, 'async_trait>(
        &'life0 self,
        select: bool
    ) -> Pin<Box<dyn Future<Output = Result<DriverRegistrarProxy>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_tool_runner_proxy<'life0, 'async_trait>(
        &'life0 self,
        select: bool
    ) -> Pin<Box<dyn Future<Output = Result<ToolRunnerProxy>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_run_builder_proxy<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<RunBuilderProxy>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn get_driver_development_proxy<'life0, 'async_trait>( &'life0 self, select: bool ) -> Pin<Box<dyn Future<Output = Result<ManagerProxy>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_dev_proxy<'life0, 'async_trait>( &'life0 self, select: bool ) -> Pin<Box<dyn Future<Output = Result<DirectoryProxy>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_driver_registrar_proxy<'life0, 'async_trait>( &'life0 self, select: bool ) -> Pin<Box<dyn Future<Output = Result<DriverRegistrarProxy>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_tool_runner_proxy<'life0, 'async_trait>( &'life0 self, select: bool ) -> Pin<Box<dyn Future<Output = Result<ToolRunnerProxy>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_run_builder_proxy<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<RunBuilderProxy>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§