pub type Vector<E: TensorElement, D, const N: usize> = Tensor<E, D, 1, N, 1>;Aliased Type§
struct Vector<E: TensorElement, D, const N: usize> {
pub data: [E; { _ }],
pub _phantom: PhantomData<D>,
}Fields§
§data: [E; { _ }]§_phantom: PhantomData<D>