pub trait TryDiv<RHS = Self> {
type Output;
type Err;
// Required method
fn try_div(self, rhs: RHS) -> Result<Self::Output, Self::Err>;
}Expand description
Fallible division trait.
pub trait TryDiv<RHS = Self> {
type Output;
type Err;
// Required method
fn try_div(self, rhs: RHS) -> Result<Self::Output, Self::Err>;
}Fallible division trait.