Trait nalgebra::ClosedMul

source ·
pub trait ClosedMul<Right = Self>: Sized + Mul<Right, Output = Self> + MulAssign<Right> { }
Expand description

Trait alias for Mul and MulAssign with result of type Self.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, Right> ClosedMul<Right> for T
where T: Mul<Right, Output = T> + MulAssign<Right>,