pub trait TryRem<Rhs = Self> {
type Output;
type Error;
// Required method
fn try_rem(self, rhs: Rhs) -> Result<Self::Output, Self::Error>;
}
Expand description
Checked remainder operator which returns a Result to indicate success or failure.