Skip to main content

MinOrder

Trait MinOrder 

Source
pub trait MinOrder<Other: ?Sized>: Sealed<Other> {
    type Min: Ordering;
}
Expand description

Helper trait for determining the weakest of two orderings.

Required Associated Types§

Source

type Min: Ordering

The weaker of the two orderings.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§