Trait IntoMatrixRowColumn

Source
pub trait IntoMatrixRowColumn {
    // Required method
    fn into_matrix_row_and_column(&self) -> (u8, u8);
}
Expand description

Types that implement this trait can be transformed into a matrix row and column.

Required Methods§

Source

fn into_matrix_row_and_column(&self) -> (u8, u8)

Return a tuple (row, column) that represents the matrix row and column for this type.

Implementors§