Trait IntoAxis

Source
pub trait IntoAxis {
    // Required method
    fn into_axis(self) -> Axis;
}
Expand description

The IntoAxis trait is used to define a conversion routine that takes a type and wraps it in an Axis type.

Required Methods§

Source

fn into_axis(self) -> Axis

Implementors§

Source§

impl<S> IntoAxis for S
where S: AsRef<usize>,