pub trait FinderElement {
// Required methods
fn to_image(&self, width: usize, height: usize) -> BinaryImage;
fn is_finder(&self, shape: Shape) -> bool;
}Expand description
Definition of a finder element
pub trait FinderElement {
// Required methods
fn to_image(&self, width: usize, height: usize) -> BinaryImage;
fn is_finder(&self, shape: Shape) -> bool;
}Definition of a finder element