pub trait ControlPlaneProxyInterface: Send + Sync {
type ControlDoResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn control_do(&self) -> Self::ControlDoResponseFut;
}
pub trait ControlPlaneProxyInterface: Send + Sync {
type ControlDoResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn control_do(&self) -> Self::ControlDoResponseFut;
}