Trait IncrementAxis

Source
pub trait IncrementAxis {
    type Output;

    // Required method
    fn inc(&self) -> Self::Output;
}
Expand description

The IncrementAxis trait defines a method enabling an axis to increment itself, effectively adding a new axis to the array.

Required Associated Types§

Required Methods§

Source

fn inc(&self) -> Self::Output

Implementors§