pub trait DecrementAxis {
type Output;
// Required method
fn dec(&self) -> Self::Output;
}Expand description
The DecrementAxis trait defines a method enabling an axis to decrement itself,
pub trait DecrementAxis {
type Output;
// Required method
fn dec(&self) -> Self::Output;
}The DecrementAxis trait defines a method enabling an axis to decrement itself,