pub trait Remainder:
CubePrimitive
+ CubeType<ExpandType: RemainderExpand>
+ Sized {
// Provided methods
fn rem(self, _rhs: Self) -> Self { ... }
fn __expand_rem(
scope: &mut Scope,
lhs: NativeExpand<Self>,
rhs: NativeExpand<Self>,
) -> NativeExpand<Self> { ... }
}Provided Methods§
fn rem(self, _rhs: Self) -> Self
fn __expand_rem( scope: &mut 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", so this trait is not object safe.