Trait lrs::ops::Mul

Objects that implement the binary * operator.

Syntax

trait Mul<RHS = Self> {
    type Output;

    /* Required methods */
    fn mul(self, rhs: RHS) -> <Self as Mul<RHS>>::Output
}

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfmul

The method that will be called by the operator.