pub trait HttpClient: Send + Sync { // Required method fn get_text<'a>(&'a self, url: &'a str) -> HttpFuture<'a, String>; }