pub trait Contains<S> {
    fn contains(&self, shape: S) -> bool;
}
Expand description

Trait for shape containing operations.

Required Methods§

Returns whether this shape contains a another shape.

Implementors§