Trait HEMMNum

Source
pub trait HEMMNum: BLASFloat {
    // Required method
    unsafe fn hemm(
        side: *const c_char,
        uplo: *const c_char,
        m: *const blas_int,
        n: *const blas_int,
        alpha: *const Self,
        a: *const Self,
        lda: *const blas_int,
        b: *const Self,
        ldb: *const blas_int,
        beta: *const Self,
        c: *mut Self,
        ldc: *const blas_int,
    );
}

Required Methods§

Source

unsafe fn hemm( side: *const c_char, uplo: *const c_char, m: *const blas_int, n: *const blas_int, alpha: *const Self, a: *const Self, lda: *const blas_int, b: *const Self, ldb: *const blas_int, beta: *const Self, c: *mut Self, ldc: *const blas_int, )

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.

Implementors§