pub trait NamedRowFormat: RowFormat {
    // Required methods
    fn name(&self, i: usize) -> String;
    fn data_type(&self, i: usize) -> TensorType;
    fn row_shape(&self, i: usize) -> Dyn;
}

Required Methods§

source

fn name(&self, i: usize) -> String

source

fn data_type(&self, i: usize) -> TensorType

source

fn row_shape(&self, i: usize) -> Dyn

Implementors§