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§
Sourcefn into_matrix_row_and_column(&self) -> (u8, u8)
fn into_matrix_row_and_column(&self) -> (u8, u8)
Return a tuple (row, column)
that represents the matrix row and column for this type.