Trait HER2Num

Source
pub trait HER2Num: BLASFloat {
    // Required method
    unsafe fn syr2(
        uplo: *const c_char,
        n: *const blas_int,
        alpha: *const Self,
        x: *const Self,
        incx: *const blas_int,
        y: *const Self,
        incy: *const blas_int,
        a: *mut Self,
        lda: *const blas_int,
    );
}

Required Methods§

Source

unsafe fn syr2( uplo: *const c_char, n: *const blas_int, alpha: *const Self, x: *const Self, incx: *const blas_int, y: *const Self, incy: *const blas_int, a: *mut Self, lda: *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.

Implementations on Foreign Types§

Source§

impl HER2Num for f32

Source§

unsafe fn syr2( uplo: *const c_char, n: *const blas_int, alpha: *const Self, x: *const Self, incx: *const blas_int, y: *const Self, incy: *const blas_int, a: *mut Self, lda: *const blas_int, )

Source§

impl HER2Num for f64

Source§

unsafe fn syr2( uplo: *const c_char, n: *const blas_int, alpha: *const Self, x: *const Self, incx: *const blas_int, y: *const Self, incy: *const blas_int, a: *mut Self, lda: *const blas_int, )

Implementors§