pub trait WatcherProxyInterface: Send + Sync {
    type OnLevelChangedResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn on_level_changed(&self, level: Level) -> Self::OnLevelChangedResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§