Trait axgeom::AxisTrait[][src]

pub trait AxisTrait: Sync + Send + Copy + Clone {
    type Next: AxisTrait;
    fn is_xaxis(&self) -> bool;
fn next(&self) -> Self::Next; fn is_equal_to<B: AxisTrait>(&self, other: B) -> bool { ... } }

Axis trait can be used to extract the x or y portions of a container. when you know the axis as compile time. The X implementation of this trait's Next associated trait is the Y implementation. The Y implementation of this trait's Next associated trait is the X implementation.

Associated Types

Required Methods

Provided Methods

Implementors