Trait rin::math::DimMul[][src]

pub trait DimMul<D>: Dim where
    D: Dim
{ type Output: Dim; pub fn mul(self, other: D) -> Self::Output; }

Associated Types

type Output: Dim[src]

Loading content...

Required methods

pub fn mul(self, other: D) -> Self::Output[src]

Loading content...

Implementors

impl<D1, D2> DimMul<D2> for D1 where
    D2: DimName,
    D1: DimName,
    <D1 as DimName>::Value: Mul<<D2 as DimName>::Value>,
    <<D1 as DimName>::Value as Mul<<D2 as DimName>::Value>>::Output: NamedDim
[src]

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

impl<D> DimMul<Dynamic> for D where
    D: DimName
[src]

type Output = Dynamic

impl<D> DimMul<D> for Dynamic where
    D: Dim
[src]

type Output = Dynamic

Loading content...