Skip to main content

MulHi

Trait MulHi 

Source
pub trait MulHi:
    Sized
    + CubePrimitive
    + CubeType
where 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§

Source

fn mul_hi(self, _rhs: Self) -> Self

Source

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".

Implementations on Foreign Types§

Source§

impl MulHi for i32

Source§

impl MulHi for isize

Source§

impl MulHi for u32

Source§

impl MulHi for usize

Implementors§

Source§

impl<T, N> MulHi for Vector<T, N>
where T: MulHi + Scalar, N: Size,