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