pub trait BLASBuilder_<'c, F, D>where
D: Dimension,{
// Required method
fn driver(self) -> Result<impl BLASDriver<'c, F, D>, BLASError>;
}
Expand description
Trait for BLAS builder prototypes
Required Methods§
fn driver(self) -> Result<impl BLASDriver<'c, F, D>, BLASError>
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.