pub trait WatcherProxyInterface: Send + Sync {
type OnLevelChangedResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_level_changed(&self, level: Level) -> Self::OnLevelChangedResponseFut;
}
pub trait WatcherProxyInterface: Send + Sync {
type OnLevelChangedResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_level_changed(&self, level: Level) -> Self::OnLevelChangedResponseFut;
}