pub trait Copy: Sized {
// Required methods
fn copy<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
src: &V,
dst: &mut W,
);
fn copy_mat(src: &dyn Matrix<Self>, dst: &mut dyn Matrix<Self>);
}
Required Methods§
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.