pub trait DivCeil: Sized {
// Required methods
fn msrv_div_ceil(self, rhs: Self) -> Self;
fn msrv_next_multiple_of(self, rhs: Self) -> Self;
fn msrv_checked_next_multiple_of(self, rhs: Self) -> Option<Self>;
}
Required Methods§
fn msrv_div_ceil(self, rhs: Self) -> Self
fn msrv_next_multiple_of(self, rhs: Self) -> Self
fn msrv_checked_next_multiple_of(self, rhs: Self) -> Option<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.