pub trait MulHi:
Sized
+ CubePrimitive
+ CubeTypewhere
Self::ExpandType: MulHiExpand,{
// Provided methods
fn mul_hi(self, _rhs: Self) -> Self { ... }
fn __expand_mul_hi(
scope: &Scope,
lhs: NativeExpand<Self>,
rhs: NativeExpand<Self>,
) -> NativeExpand<Self> { ... }
}Provided Methods§
fn mul_hi(self, _rhs: Self) -> Self
fn __expand_mul_hi( 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".