pub trait AxisName { // Required method fn axis_name(&self) -> Cow<'_, str>; }
A trait that describes the name of an axis. Implementations usually associate one distinct axis name string per enum variant.
Returns the short identifier used to represent the axis programmatically.