pub trait IntoFaer {
type Faer;
// Required method
fn into_faer(self) -> Self::Faer;
}Expand description
Conversions from external library matrix views into faer types.
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Source§impl<'a, T> IntoFaer for ArrayViewMut<'a, T, Ix2>
Available on crate feature ndarray only.
impl<'a, T> IntoFaer for ArrayViewMut<'a, T, Ix2>
Available on crate feature
ndarray only.Source§impl<'a, T, R: Dim, C: Dim, RStride: Dim, CStride: Dim> IntoFaer for MatrixView<'a, T, R, C, RStride, CStride>
Available on crate feature nalgebra only.
impl<'a, T, R: Dim, C: Dim, RStride: Dim, CStride: Dim> IntoFaer for MatrixView<'a, T, R, C, RStride, CStride>
Available on crate feature
nalgebra only.Source§impl<'a, T, R: Dim, C: Dim, RStride: Dim, CStride: Dim> IntoFaer for MatrixViewMut<'a, T, R, C, RStride, CStride>
Available on crate feature nalgebra only.
impl<'a, T, R: Dim, C: Dim, RStride: Dim, CStride: Dim> IntoFaer for MatrixViewMut<'a, T, R, C, RStride, CStride>
Available on crate feature
nalgebra only.Source§impl<'a, T: Element + 'a> IntoFaer for PyReadonlyArray1<'a, T>
Available on crate feature numpy only.
impl<'a, T: Element + 'a> IntoFaer for PyReadonlyArray1<'a, T>
Available on crate feature
numpy only.Source§impl<'a, T: Element + 'a> IntoFaer for PyReadonlyArray2<'a, T>
Available on crate feature numpy only.
impl<'a, T: Element + 'a> IntoFaer for PyReadonlyArray2<'a, T>
Available on crate feature
numpy only.