pub trait RouteStrategy:
Send
+ Sync
+ 'static {
// Required method
fn route<'a>(
&self,
ctx: &RouteCtx<'a>,
pool: &'a BackendPool,
) -> RoutingDecision<'a>;
}pub trait RouteStrategy:
Send
+ Sync
+ 'static {
// Required method
fn route<'a>(
&self,
ctx: &RouteCtx<'a>,
pool: &'a BackendPool,
) -> RoutingDecision<'a>;
}