Skip to main content

ToHostArray

Trait ToHostArray 

Source
pub trait ToHostArray<T> {
    // Required method
    fn to_host_array(self) -> HostArray;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T: Scalar + 'static> ToHostArray<T> for Vec<T>

Source§

impl<T: Scalar + FaerScalar + 'static> ToHostArray<T> for Col<T>

Source§

impl<T: Scalar + FaerScalar + 'static> ToHostArray<T> for Mat<T>

Source§

impl<T: Scalar + NalgebraScalar + 'static> ToHostArray<T> for DMatrix<T>

Source§

impl<T: Scalar + NalgebraScalar + 'static> ToHostArray<T> for DVector<T>

Source§

impl<V> ToHostArray<Vec<V>> for Vec<V>
where V: Vector, V::T: Scalar + 'static,

Implementors§