pub trait QueryInfo {
type Kind: QueryKind;
// Required methods
fn rotation(&self) -> Rotation;
fn column_index(&self) -> usize;
}Expand description
Trait for retrieving information about cell queries.
Required Associated Types§
Required Methods§
Sourcefn column_index(&self) -> usize
fn column_index(&self) -> usize
Returns the index of the column the queried cell belongs to.