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