pub trait DivCeil<Rhs = Self> {
type Output;
// Required method
fn div_ceil(self, rhs: Rhs) -> Self::Output;
}
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Source§impl DivCeil for i32
Newer Rust introduces this natively,
but we don’t always have newer Rust.
impl DivCeil for i32
Newer Rust introduces this natively, but we don’t always have newer Rust.