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