pub trait DivRoundUpIf<RHS = Self> {
type Output;
fn checked_div_round_up_if(
self,
divisor: RHS,
round_up: bool
) -> Option<Self::Output>;
}pub trait DivRoundUpIf<RHS = Self> {
type Output;
fn checked_div_round_up_if(
self,
divisor: RHS,
round_up: bool
) -> Option<Self::Output>;
}