pub trait BlasBinaryProvider<F, B: IBlasBinary<F> + IBinary> {
    // Required method
    fn binary(&self) -> &B;
}
Expand description

Allows a BlasBinary to be provided which is used for a IBlas implementation.

Required Methods§

source

fn binary(&self) -> &B

Returns the binary representation

Trait Implementations§

source§

impl<F, B: IBlasBinary<F> + IBinary> IBlas<F> for dyn BlasBinaryProvider<F, B>

Implementors§