pub trait GenericMatrixFromExt<R: Conv, C: Conv> {
type T;
// Required method
fn into_generic_matrix(self) -> GenericMatrix<Self::T, R, C>;
}Expand description
GenericMatrix-conversion trait intended for core arrays and regular nalgebra matrices
Required Associated Types§
Required Methods§
Sourcefn into_generic_matrix(self) -> GenericMatrix<Self::T, R, C>
fn into_generic_matrix(self) -> GenericMatrix<Self::T, R, C>
Creates GenericMatrix from core Rust array.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".