Trait Strides

Source
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.

Implementations on Foreign Types§

Source§

impl Strides for [isize; 0]

Source§

impl Strides for [isize; 1]

Source§

impl Strides for [isize; 2]

Source§

impl Strides for [isize; 3]

Source§

impl Strides for [isize; 4]

Source§

impl Strides for [isize; 5]

Source§

impl Strides for [isize; 6]

Implementors§