pub trait WithoutLapackData<F: Float>where
Self: Data,{
type D: Data<Elem = F>;
// Provided method
fn without_lapack<I>(x: ArrayBase<Self, I>) -> ArrayBase<Self::D, I>
where I: Dimension { ... }
}
Required Associated Types§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.