pub trait PrefixControlProxyInterface: Send + Sync {
type WatchPrefixResponseFut: Future<Output = Result<PrefixEvent, Error>> + Send;
// Required method
fn watch_prefix(&self) -> Self::WatchPrefixResponseFut;
}
pub trait PrefixControlProxyInterface: Send + Sync {
type WatchPrefixResponseFut: Future<Output = Result<PrefixEvent, Error>> + Send;
// Required method
fn watch_prefix(&self) -> Self::WatchPrefixResponseFut;
}