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