pub trait DictionaryRouterProxyInterface: Send + Sync {
type RouteResponseFut: Future<Output = Result<DictionaryRouterRouteResult, Error>> + Send;
// Required method
fn route(&self, payload: RouteRequest) -> Self::RouteResponseFut;
}
pub trait DictionaryRouterProxyInterface: Send + Sync {
type RouteResponseFut: Future<Output = Result<DictionaryRouterRouteResult, Error>> + Send;
// Required method
fn route(&self, payload: RouteRequest) -> Self::RouteResponseFut;
}