Trait otter_api_tests::imports::digest::generic_array::typenum::Min[]

pub trait Min<Rhs = Self> {
    type Output;
    fn min(self, rhs: Rhs) -> Self::Output;
}
Expand description

A type operator that returns the minimum of Self and Rhs.

Associated Types

The type of the minimum of Self and Rhs

Required methods

Method returning the minimum

Implementors