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