Trait tabled::Object[][src]

pub trait Object: Sized {
    fn cells(
        &self,
        count_rows: usize,
        count_columns: usize
    ) -> Vec<(usize, usize)>; fn and<O: Object>(self, rhs: O) -> Combination<Self, O> { ... }
fn not<O: Object>(self, rhs: O) -> Combination<Self, O> { ... } }
Expand description

Object helps to locate a nessesary part of a Grid.

Required methods

Cells returns a set of cordinates of cells

Provided methods

And combines output of self with rhs object

Not excludes output of rhs from output

Implementors