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