pub trait PrefixControlProxyInterface: Send + Sync {
    type WatchPrefixResponseFut: Future<Output = Result<PrefixEvent, Error>> + Send;

    // Required method
    fn watch_prefix(&self) -> Self::WatchPrefixResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§