[][src]Trait try_traits::ops::TryDivAssign

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

The try trait for DivAssign.

Associated Types

type Error

The type returned in the event of an error.

Loading content...

Required methods

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

The fallible equivalent of DivAssign::div_assign.

Loading content...

Implementors

impl<T: DivAssign<Rhs>, Rhs> TryDivAssign<Rhs> for T[src]

type Error = Infallible

Loading content...