pub trait TaggedMul<Strategy> {
// Required method
fn mul(self, rhs: Self) -> Self;
}
Expand description
Multiplication that is parameterized with some some strategy.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait TaggedMul<Strategy> {
// Required method
fn mul(self, rhs: Self) -> Self;
}
Multiplication that is parameterized with some some strategy.