pub trait Tsyrk: Scalar {
// Required method
unsafe fn syrk(
layout: Layout,
uplo: Part,
trans: Transpose,
n: i32,
k: i32,
alpha: Self,
a: &[Self],
lda: i32,
beta: Self,
c: &mut [Self],
ldc: i32,
);
}Required Methods§
unsafe fn syrk( layout: Layout, uplo: Part, trans: Transpose, n: i32, k: i32, alpha: Self, a: &[Self], lda: i32, beta: Self, c: &mut [Self], ldc: 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.