1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use crateDuration;
use fmt;
/// Why a retry loop terminated.
///
/// # Examples
///
/// ```
/// use relentless::{RetryPolicy, StopReason, stop};
///
/// let policy = RetryPolicy::new().stop(stop::attempts(1));
/// let (_result, stats) = policy
/// .retry(|_| Err::<(), _>("fail"))
/// .sleep(|_dur| {})
/// .with_stats()
/// .call();
///
/// assert_eq!(stats.stop_reason, StopReason::Exhausted);
/// ```
/// Aggregate statistics for a completed retry execution.
///
/// # Examples
///
/// ```
/// use relentless::{RetryPolicy, RetryStats, stop, wait};
/// use core::time::Duration;
///
/// let policy = RetryPolicy::new()
/// .stop(stop::attempts(3))
/// .wait(wait::fixed(Duration::from_millis(5)));
/// let (_result, stats): (Result<(), _>, RetryStats) = policy
/// .retry(|_| Err::<(), _>("fail"))
/// .sleep(|_dur| {})
/// .with_stats()
/// .call();
///
/// assert_eq!(stats.attempts, 3);
/// assert_eq!(stats.total_wait, Duration::from_millis(10));
/// ```