pub trait BackOffStrategy { // Required method fn wait_time(&self, base_wait: Seconds, num_retries: u32) -> Seconds; }