pub trait Contains<S> {
// Required method
fn contains(&self, shape: S) -> bool;
}Expand description
Trait for shape containing operations.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".