Trait diffsol::vector::VectorCommon

source ·
pub trait VectorCommon: Sized + Debug {
    type T: Scalar;
}

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, T: Scalar> VectorCommon for ColMut<'a, T>

§

type T = T

source§

impl<'a, T: Scalar> VectorCommon for Col<T>

§

type T = T

source§

impl<'a, T: Scalar> VectorCommon for ColRef<'a, T>

§

type T = T

source§

impl<'a, T: Scalar> VectorCommon for DVector<T>

§

type T = T

source§

impl<'a, T: Scalar> VectorCommon for DVectorView<'a, T>

§

type T = T

source§

impl<'a, T: Scalar> VectorCommon for DVectorViewMut<'a, T>

§

type T = T

source§

impl<'a, V> VectorCommon for &'a V
where V: VectorCommon,

§

type T = <V as VectorCommon>::T

source§

impl<'a, V> VectorCommon for &'a mut V
where V: VectorCommon,

§

type T = <V as VectorCommon>::T

Implementors§