pub type RetryCount = Option<u16>;Expand description
Amount of times to retry an operation.
None = infinite retries.
note that this is the number of retries, not the number of attempts.
Aliased Type§
pub enum RetryCount {
None,
Some(u16),
}