DeviceOpUnpackTriAPI

Trait DeviceOpUnpackTriAPI 

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

Required Methods§

Source

fn unpack_tri( &self, a: &mut Self::Raw, la: &Layout<Vec<usize>>, b: &Self::Raw, lb: &Layout<Vec<usize>>, uplo: FlagUpLo, symm: FlagSymm, ) -> 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§