pub trait IntegerDiv {
// Required methods
fn vector_div_floor(self, rhs: Self) -> Self;
fn scalar_div_floor(self, rhs: i32) -> Self;
fn vector_div_ceil(self, rhs: Self) -> Self;
fn scalar_div_ceil(self, rhs: i32) -> Self;
}Required Methods§
fn vector_div_floor(self, rhs: Self) -> Self
fn scalar_div_floor(self, rhs: i32) -> Self
fn vector_div_ceil(self, rhs: Self) -> Self
fn scalar_div_ceil(self, rhs: i32) -> 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.