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