Type Alias arrow::tensor::Int32Tensor

source ·
pub type Int32Tensor<'a> = Tensor<'a, Int32Type>;

Aliased Type§

struct Int32Tensor<'a> {
    data_type: DataType,
    buffer: Buffer,
    shape: Option<Vec<usize>>,
    strides: Option<Vec<usize>>,
    names: Option<Vec<&'a str>>,
    _marker: PhantomData<Int32Type>,
}

Fields§

§data_type: DataType§buffer: Buffer§shape: Option<Vec<usize>>§strides: Option<Vec<usize>>§names: Option<Vec<&'a str>>§_marker: PhantomData<Int32Type>