pub trait Product {
    fn product(self, other: Self) -> Self;
}
Expand description

Trait defining the product of two numbers.

For bool this is the same as boolean AND; otherwise it’s the same as Mul.

Required Methods

Implementations on Foreign Types

Implementors