pub trait DimMul<D: Dim>: Dim {
    type Output: Dim;

    // Required method
    fn mul(self, other: D) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn mul(self, other: D) -> Self::Output

Implementors§

source§

impl<D1: DimName, D2: DimName> DimMul<D2> for D1where D1::Value: Mul<D2::Value>, Prod<D1::Value, D2::Value>: NamedDim,

§

type Output = <<<D1 as DimName>::Value as Mul<<D2 as DimName>::Value>>::Output as NamedDim>::Name

source§

impl<D: Dim> DimMul<D> for Dynamic

source§

impl<D: DimName> DimMul<Dynamic> for D