pub trait IntoAxis { // Required method fn into_axis(self) -> Axis; }
The IntoAxis trait is used to define a conversion routine that takes a type and wraps it in an Axis type.
IntoAxis
Axis