pub trait ControlProxyInterface: Send + Sync {
type SetEnabledResponseFut: Future<Output = Result<ControlSetEnabledResult, Error>> + Send;
// Required method
fn set_enabled(&self, enabled: bool) -> Self::SetEnabledResponseFut;
}
pub trait ControlProxyInterface: Send + Sync {
type SetEnabledResponseFut: Future<Output = Result<ControlSetEnabledResult, Error>> + Send;
// Required method
fn set_enabled(&self, enabled: bool) -> Self::SetEnabledResponseFut;
}