pub trait Backend: Send + Sync + 'static { // Required method fn send(&self, request: Request) -> Result<Response, Error>; }