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