[][src]Trait nshare::ToNalgebra

pub trait ToNalgebra {
    type Out;
    fn to_nalgebra(self) -> Self::Out;
}

Converts a 1 or 2 dimensional type to a nalgebra type.

This uses an associated type to avoid ambiguity for the compiler. By calling this, the compiler always knows the returned type.

Associated Types

type Out

Loading content...

Required methods

fn to_nalgebra(self) -> Self::Out

Loading content...

Implementors

Loading content...