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§
Sourcetype Min: Retries + WeakerRetryThan<Self> + WeakerRetryThan<Other>
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".