pub trait DivCeil<Rhs = Self> {
    type Output;

    fn div_ceil(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Newer Rust introduces this natively, but we don’t always have newer Rust.

Implementors