pub trait RemLogic<Rhs = Self> { type Output; // Required method fn rem(self, other: Rhs) -> Self::Output; }
Trait for remainder (%) in logic code.
%
logic