use std::error::Error; #[tokio::main] async fn main() -> Result<(), Box> { pretty_env_logger::init(); again::retry(|| reqwest::get("nope")).await?; Ok(()) }