pub trait DivCeil: Int + CubeType<ExpandType: DivCeilExpand<Self>> {
// Required method
fn div_ceil(self, divisor: Self) -> Self;
// Provided method
fn __expand_div_ceil(
scope: &mut Scope,
a: NativeExpand<Self>,
b: NativeExpand<Self>,
) -> NativeExpand<Self> { ... }
}Required Methods§
Provided Methods§
fn __expand_div_ceil( scope: &mut Scope, a: NativeExpand<Self>, b: NativeExpand<Self>, ) -> NativeExpand<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.