[][src]Trait try_traits::ops::TryRemAssign

pub trait TryRemAssign<Rhs = Self> {
    type Error;
    fn try_rem_assign(&mut self, other: Rhs) -> Result<(), Self::Error>;
}

The try trait for RemAssign.

Associated Types

type Error

The type returned in the event of an error.

Loading content...

Required methods

fn try_rem_assign(&mut self, other: Rhs) -> Result<(), Self::Error>

The fallible equivalent of RemAssign::rem_assign.

Loading content...

Implementors

impl<T: RemAssign<Rhs>, Rhs> TryRemAssign<Rhs> for T[src]

type Error = Infallible

Loading content...