pub trait ModFloor:
CubePrimitive
+ CubeType<ExpandType: ModFloorExpand>
+ Sized {
// Provided methods
fn mod_floor(self, _rhs: Self) -> Self { ... }
fn __expand_mod_floor(
scope: &Scope,
lhs: NativeExpand<Self>,
rhs: NativeExpand<Self>,
) -> NativeExpand<Self> { ... }
}Provided Methods§
fn mod_floor(self, _rhs: Self) -> Self
fn __expand_mod_floor( scope: &Scope, lhs: NativeExpand<Self>, rhs: NativeExpand<Self>, ) -> NativeExpand<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".