pub trait FactoryProxyInterface: Send + Sync {
    type CreateResponseFut: Future<Output = Result<FactoryCreateResult, Error>> + Send;

    // Required method
    fn create(
        &self,
        config: &ControlConfig,
        control: ServerEnd<ControlMarker>
    ) -> Self::CreateResponseFut;
}

Required Associated Types§

Required Methods§

source

fn create( &self, config: &ControlConfig, control: ServerEnd<ControlMarker> ) -> Self::CreateResponseFut

Implementors§