pub fn retry_ready_at(
retry_wait_entered_at: u64,
attempt_number: u32,
strategy: &dyn BackoffStrategy,
) -> u64Expand description
Computes the timestamp at which a retried run becomes ready.
retry_wait_entered_at is the timestamp when the run entered RetryWait.
Returns retry_wait_entered_at + backoff_delay, saturating at u64::MAX.