QueryInfo

Trait QueryInfo 

Source
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§

Source

type Kind: QueryKind

The kind of query this implementation provides information about.

Required Methods§

Source

fn rotation(&self) -> Rotation

Returns the rotation offset.

Source

fn column_index(&self) -> usize

Returns the index of the column the queried cell belongs to.

Implementors§