pub trait GetMatrixElementCoordinate {
    // Required methods
    fn coordinate(&self) -> Coordinate;
    fn coordinate_ref(&self) -> &Coordinate;
    fn row_index(&self) -> ElementIndex;
    fn row_index_ref(&self) -> &ElementIndex;
    fn column_index(&self) -> ElementIndex;
    fn column_index_ref(&self) -> &ElementIndex;
}

Required Methods§

Implementors§