trait Axis {
    type NextAxis: Axis;
    fn value(coord: &Coord) -> u16;
}

Associated Types

Required methods

Implementors