Trait Contains2D

Source
pub trait Contains2D<T> {
    // Required method
    fn contains(&self, other: &T) -> bool;
}
Expand description

Whether this instance contains or covers something else.

Required Methods§

Source

fn contains(&self, other: &T) -> bool

Whether this instance contains or covers the other.

Implementors§