1use crate::records::small_vector::SmallVector; 2 3impl<T, const N: usize> SmallVector<T, N> { 4 // Intentionally left empty: 5 // SmallVector::size is already implemented on the SmallVector record type. 6}