pub trait TryRemAssign<Rhs = Self> {
type Error;
// Required method
fn try_rem_assign(&mut self, other: Rhs) -> Result<(), Self::Error>;
}Expand description
The try trait for RemAssign.
Required Associated Types§
Required Methods§
Sourcefn try_rem_assign(&mut self, other: Rhs) -> Result<(), Self::Error>
fn try_rem_assign(&mut self, other: Rhs) -> Result<(), Self::Error>
The fallible equivalent of RemAssign::rem_assign.