Objects that implement the binary * operator.
trait Mul<RHS = Self> {
type Output;
/* Required methods */
fn mul(self, rhs: RHS) -> <Self as Mul<RHS>>::Output
}| Name | Description |
|---|---|
| Output | The output of the operator. |
| Receiver | Name | Description |
|---|---|---|
self | mul | The method that will be called by the operator. |