pub trait CopyFrom<RHS>: ViewMutMatix
where RHS: ViewMatrix,
{ // Required method fn copy_from(&mut self, rhs: &RHS); }

Required Methods§

source

fn copy_from(&mut self, rhs: &RHS)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, V, VM> CopyFrom<Matrix<V, DimDyn>> for Matrix<VM, DimDyn>
where T: Num, VM: ViewMut<Item = T>, V: View<Item = T>,