RetryCount

Type Alias RetryCount 

Source
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),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(u16)

Some value of type T.