pub trait Get: Sync + Send { // Required method fn http_get<'a>(&'a self, url: &'a str) -> BoxFuture<'a, Result<String>>; }