[][src]Trait na::traits::IntoVec

pub trait IntoVec<V> {
    fn into_vec(self) -> V;
}

Required methods

fn into_vec(self) -> V

Loading content...

Implementations on Foreign Types

impl<T: Scalar> IntoVec<Matrix<T, U2, U1, <DefaultAllocator as Allocator<T, U2, U1>>::Buffer>> for [T; 2][src]

impl<'a, T: Scalar> IntoVec<Matrix<T, U2, U1, <DefaultAllocator as Allocator<T, U2, U1>>::Buffer>> for &'a [T][src]

impl<T: Scalar> IntoVec<Matrix<T, U3, U1, <DefaultAllocator as Allocator<T, U3, U1>>::Buffer>> for [T; 3][src]

impl<'a, T: Scalar> IntoVec<Matrix<T, U3, U1, <DefaultAllocator as Allocator<T, U3, U1>>::Buffer>> for &'a [T][src]

impl<T: Scalar> IntoVec<Matrix<T, U4, U1, <DefaultAllocator as Allocator<T, U4, U1>>::Buffer>> for [T; 4][src]

impl<'a, T: Scalar> IntoVec<Matrix<T, U4, U1, <DefaultAllocator as Allocator<T, U4, U1>>::Buffer>> for &'a [T][src]

Loading content...

Implementors

impl<T: Scalar> IntoVec<Matrix<T, U2, U1, <DefaultAllocator as Allocator<T, U2, U1>>::Buffer>> for T[src]

impl<T: Scalar> IntoVec<Matrix<T, U3, U1, <DefaultAllocator as Allocator<T, U3, U1>>::Buffer>> for T[src]

impl<T: Scalar> IntoVec<Matrix<T, U4, U1, <DefaultAllocator as Allocator<T, U4, U1>>::Buffer>> for T[src]

impl<V> IntoVec<V> for V[src]

Loading content...