pub trait Contains<P: Into<Coord>> {
    fn contains(&self, xy: P) -> bool;
}

Required Methods

Implementors