Skip to main content

CubeDiv

Trait CubeDiv 

Source
pub trait CubeDiv:
    Sized
    + Div<Output = Self>
    + CubePrimitive
    + CubeType
where Self::ExpandType: DivExpand,
{ // Provided method fn __expand_mul( scope: &mut Scope, lhs: NativeExpand<Self>, rhs: NativeExpand<Self>, ) -> NativeExpand<Self> { ... } }

Provided Methods§

Source

fn __expand_mul( 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".

Implementors§

Source§

impl<T> CubeDiv for T
where T: Div<Output = T> + CubePrimitive,