pub trait ClientCallerBlocking: Send {
type Facts: ClientFacts;
// Required method
fn send_req_blocking(&self, task: <Self::Facts as ClientFacts>::Task);
}Expand description
A trait to support sending request task in blocking text, for all router and connection pool implementations