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