Skip to main content

MatrixRef

Trait MatrixRef 

Source
pub trait MatrixRef<M: MatrixCommon>: Mul<Scale<M::T>, Output = M> { }
Expand description

A trait allowing for references to implement matrix operations

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<RefT, M: MatrixCommon> MatrixRef<M> for RefT
where RefT: Mul<Scale<M::T>, Output = M>,