DeviceOpPackTriAPI

Trait DeviceOpPackTriAPI 

Source
pub trait DeviceOpPackTriAPI<T>: DeviceAPI<T> {
    // Required method
    fn pack_tri(
        &self,
        a: &mut Self::Raw,
        la: &Layout<Vec<usize>>,
        b: &Self::Raw,
        lb: &Layout<Vec<usize>>,
        uplo: FlagUpLo,
    ) -> Result<(), Error>;
}

Required Methods§

Source

fn pack_tri( &self, a: &mut Self::Raw, la: &Layout<Vec<usize>>, b: &Self::Raw, lb: &Layout<Vec<usize>>, uplo: FlagUpLo, ) -> Result<(), Error>

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§