Skip to main content

MinRetries

Trait MinRetries 

Source
pub trait MinRetries<Other: ?Sized>: Sealed<Other> {
    type Min: Retries + WeakerRetryThan<Self> + WeakerRetryThan<Other>;
}
Expand description

Helper trait for determining the weakest of two retry guarantees.

Required Associated Types§

Source

type Min: Retries + WeakerRetryThan<Self> + WeakerRetryThan<Other>

The weaker of the two retry guarantees.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§