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