IntoFaer

Trait IntoFaer 

Source
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§

Source

fn into_faer(self) -> Self::Faer

Implementations on Foreign Types§

Source§

impl<'a, T> IntoFaer for ArrayView<'a, T, Ix2>

Available on crate feature ndarray only.
Source§

type Faer = Mat<Ref<'a, T>>

Source§

fn into_faer(self) -> Self::Faer

Source§

impl<'a, T> IntoFaer for ArrayViewMut<'a, T, Ix2>

Available on crate feature ndarray only.
Source§

type Faer = Mat<Mut<'a, T>>

Source§

fn into_faer(self) -> Self::Faer

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.
Source§

type Faer = Mat<Ref<'a, T>>

Source§

fn into_faer(self) -> Self::Faer

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.
Source§

type Faer = Mat<Mut<'a, T>>

Source§

fn into_faer(self) -> Self::Faer

Source§

impl<'a, T: Element + 'a> IntoFaer for PyReadonlyArray1<'a, T>

Available on crate feature numpy only.
Source§

type Faer = Col<Ref<'a, T>>

Source§

fn into_faer(self) -> Self::Faer

Source§

impl<'a, T: Element + 'a> IntoFaer for PyReadonlyArray2<'a, T>

Available on crate feature numpy only.
Source§

type Faer = Mat<Ref<'a, T>>

Source§

fn into_faer(self) -> Self::Faer

Implementors§