nyx_space::linalg

Trait DimMul

Source
pub trait DimMul<D>: Dim
where D: 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

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<D> DimMul<Dyn> for D
where D: DimName,

Source§

impl<D> DimMul<D> for Dyn
where D: Dim,

Source§

impl<const A: usize, const B: usize> DimMul<Const<B>> for Const<A>