pub trait ControllerProxyInterface: Send + Sync {
type CreateResponseFut: Future<Output = Result<ControllerCreateResult, Error>> + Send;
// Required method
fn create(&self, payload: Options) -> Self::CreateResponseFut;
}
pub trait ControllerProxyInterface: Send + Sync {
type CreateResponseFut: Future<Output = Result<ControllerCreateResult, Error>> + Send;
// Required method
fn create(&self, payload: Options) -> Self::CreateResponseFut;
}