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