pub trait QWorkImpl: Sized {
    type Elem: Scalar;

    fn new(layout: MatrixLayout) -> Result<Self>;
    fn calc(&mut self, a: &mut [Self::Elem], tau: &[Self::Elem]) -> Result<()>;
}

Required Associated Types

Required Methods

Implementors