Trait typenum::type_operators::PartialDiv [−][src]
pub trait PartialDiv<Rhs = Self> { type Output; fn partial_div(self, _: Rhs) -> Self::Output; }
Expand description
Division as a partial function. This type operator performs division just as Div
, but is
only defined when the result is an integer (i.e. there is no remainder).
Associated Types
Required methods
fn partial_div(self, _: Rhs) -> Self::Output
[src]
fn partial_div(self, _: Rhs) -> Self::Output
[src]Method for performing the division