pub trait LargerOfOp<Rhs> {
    type Output;
}
Expand description

Utility trait for determining which of two integer types is larger.

The type alias LargerOf is usually more convenient to use outside of implementations of this trait.

Required Associated Types

If Rhs is a larger type than Self, this should be Rhs; otherwise it should be Self.

Implementations on Foreign Types

Implementors