pub trait Shape: Copy + Debug + Default + IndexMut<(Bound<usize>, Bound<usize>), Output = [usize]> + IndexMut<usize, Output = usize> + IndexMut<Range<usize>, Output = [usize]> + IndexMut<RangeFrom<usize>, Output = [usize]> + IndexMut<RangeFull, Output = [usize]> + IndexMut<RangeInclusive<usize>, Output = [usize]> + IndexMut<RangeTo<usize>, Output = [usize]> + IndexMut<RangeToInclusive<usize>, Output = [usize]> {
    type Dim: Dim<Shape = Self>;
}Expand description
Array shape trait.
Required Associated Types§
Object Safety§
This trait is not object safe.