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