pub trait Contains<S> {
// Required method
fn contains(&self, shape: S) -> bool;
}
Expand description
Trait for shape containing operations.
pub trait Contains<S> {
// Required method
fn contains(&self, shape: S) -> bool;
}
Trait for shape containing operations.