pub trait PrivateDivIf<N, D, Q, R, I, RcmpD> {
type Quotient;
type Remainder;
// Required methods
fn private_div_if_quotient(
self,
_: N,
_: D,
_: Q,
_: R,
_: I,
_: RcmpD,
) -> Self::Quotient;
fn private_div_if_remainder(
self,
_: N,
_: D,
_: Q,
_: R,
_: I,
_: RcmpD,
) -> Self::Remainder;
}Required Associated Types§
Required Methods§
fn private_div_if_quotient( self, _: N, _: D, _: Q, _: R, _: I, _: RcmpD, ) -> Self::Quotient
fn private_div_if_remainder( self, _: N, _: D, _: Q, _: R, _: I, _: RcmpD, ) -> Self::Remainder
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".