pub trait Tgesv: Scalar {
// Required method
unsafe fn gesv(
layout: Layout,
n: i32,
nrhs: i32,
a: &mut [Self],
lda: i32,
ipiv: &mut [i32],
b: &mut [Self],
ldb: i32,
) -> i32;
}
Required Methods§
unsafe fn gesv( layout: Layout, n: i32, nrhs: i32, a: &mut [Self], lda: i32, ipiv: &mut [i32], b: &mut [Self], ldb: i32, ) -> i32
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.