pub trait PrivateDivInt<C, Divisor> {
type Output;
// Required method
fn private_div_int(self, _: C, _: Divisor) -> Self::Output;
}pub trait PrivateDivInt<C, Divisor> {
type Output;
// Required method
fn private_div_int(self, _: C, _: Divisor) -> Self::Output;
}