Trait AxisName

Source
pub trait AxisName {
    // Required method
    fn axis_name(&self) -> Cow<'_, str>;
}
Expand description

A trait that describes the name of an axis. Implementations usually associate one distinct axis name string per enum variant.

Required Methods§

Source

fn axis_name(&self) -> Cow<'_, str>

Returns the short identifier used to represent the axis programmatically.

Implementors§