pub trait Strides:
Copy
+ Debug
+ Default
+ IndexMut<(Bound<usize>, Bound<usize>), Output = [isize]>
+ IndexMut<usize, Output = isize>
+ IndexMut<Range<usize>, Output = [isize]>
+ IndexMut<RangeFrom<usize>, Output = [isize]>
+ IndexMut<RangeFull, Output = [isize]>
+ IndexMut<RangeInclusive<usize>, Output = [isize]>
+ IndexMut<RangeTo<usize>, Output = [isize]>
+ IndexMut<RangeToInclusive<usize>, Output = [isize]>
+ Send
+ Sync
+ for<'a> TryFrom<&'a [isize], Error: Debug> { }Expand description
Array strides trait.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.