Skip to main content

MulExpand

Trait MulExpand 

Source
pub trait MulExpand {
    // Required method
    fn __expand_mul_method(self, scope: &mut Scope, rhs: Self) -> Self;
}

Required Methods§

Source

fn __expand_mul_method(self, scope: &mut Scope, rhs: Self) -> 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.

Implementors§

Source§

impl<T: Mul<Output = T> + CubePrimitive> MulExpand for NativeExpand<T>