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.

Required Associated Types§

Required Methods§

source

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

logic

Implementors§