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;
}