vortex_tensor/fixed_shape/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! Fixed-shape Tensor extension type.
5
6/// The VTable for the Tensor extension type.
7#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
8pub struct FixedShapeTensor;
9
10mod metadata;
11pub use metadata::FixedShapeTensorMetadata;
12
13mod proto;
14mod vtable;