pub trait QWorkImpl: Sized {
type Elem: Scalar;
// Required methods
fn new(layout: MatrixLayout) -> Result<Self>;
fn calc(&mut self, a: &mut [Self::Elem], tau: &[Self::Elem]) -> Result<()>;
}
Required Associated Types§
Required Methods§
fn new(layout: MatrixLayout) -> Result<Self>
fn calc(&mut self, a: &mut [Self::Elem], tau: &[Self::Elem]) -> Result<()>
Object Safety§
This trait is not object safe.