pub type Decimal32Tensor<'a> = Tensor<'a, Decimal32Type>;Expand description
Tensor of type Decimal32Type
Aliased Type§
pub struct Decimal32Tensor<'a> {
    data_type: DataType,
    buffer: Buffer,
    shape: Option<Vec<usize>>,
    strides: Option<Vec<usize>>,
    names: Option<Vec<&'a str>>,
    _marker: PhantomData<Decimal32Type>,
}Fields§
§data_type: DataType§buffer: Buffer§shape: Option<Vec<usize>>§strides: Option<Vec<usize>>§names: Option<Vec<&'a str>>§_marker: PhantomData<Decimal32Type>