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;
}

Required Associated Types§

Required Methods§

source

fn set_options(&self, payload: &MonitorOptions) -> Result<(), Error>

source

fn watch(&self) -> Self::WatchResponseFut

Implementors§