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