pub trait MonitorProxyInterface: Send + Sync {
type WatchResponseFut: Future<Output = Result<Snapshot, Error>> + Send;
// Required methods
fn set_options(&self, payload: &MonitorOptions) -> Result<(), Error>;
fn watch(&self) -> Self::WatchResponseFut;
}