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