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.

Required Associated Types§

Required Methods§

source

fn mul(self, other: Rhs) -> Self::Output

logic

Implementors§