[][src]Trait wooting_sdk::IntoMatrixRowColumn

pub trait IntoMatrixRowColumn {
    fn into_matrix_row_and_column(&self) -> (u8, u8);
}

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

Required methods

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

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

Loading content...

Implementors

impl IntoMatrixRowColumn for Key[src]

fn into_matrix_row_and_column(&self) -> (u8, u8)[src]

Returns a tuple (row, column) that represents the matrix row and column of the key.

Loading content...