pub trait VmpPMatFromBytes<B: Backend> {
// Required method
fn vmp_pmat_from_bytes(
&self,
rows: usize,
cols_in: usize,
cols_out: usize,
size: usize,
bytes: Vec<u8>,
) -> VmpPMatOwned<B>;
}pub trait VmpPMatFromBytes<B: Backend> {
// Required method
fn vmp_pmat_from_bytes(
&self,
rows: usize,
cols_in: usize,
cols_out: usize,
size: usize,
bytes: Vec<u8>,
) -> VmpPMatOwned<B>;
}