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