usecrate::spec::types::DataType;/// A multi-dimensional tensor value.
#[derive(Debug, Clone, PartialEq, Eq)]pubstructTensorValue{/// Shape dimensions (e.g., `[2, 3]` for a 2×3 matrix).
pubshape:Vec<u64>,
/// Element type of each tensor cell.
pubelement_type: DataType,
/// Raw little-endian element data in row-major order.
pubdata:Vec<u8>,
}