pub trait MulLogic<Rhs = Self> { type Output; // Required method fn mul(self, other: Rhs) -> Self::Output; }
Trait for multiplication (*) in logic code.
*
⚠