pub trait GenericMatrixExt {
type T: Scalar;
type R: Conv;
type C: Conv;
// Required methods
fn into_regular_matrix(
self,
) -> OMatrix<Self::T, <Self::R as Conv>::Nalg, <Self::C as Conv>::Nalg>
where DefaultAllocator: Allocator<<Self::R as Conv>::Nalg, <Self::C as Conv>::Nalg>;
fn conv<NewR: Conv<TNum = <Self::R as Conv>::TNum>, NewC: Conv<TNum = <Self::C as Conv>::TNum>>(
self,
) -> GenericMatrix<Self::T, NewR, NewC>;
}
Expand description
Conv trait defining GenericMatrix
conversions.
Required Associated Types§
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.