pub trait KdTreeContent<BoundingBox: BoundingBoxTrait>:
Clone
+ Eq
+ Hash {
// Required method
fn get_bounding_box(&self) -> BoundingBox;
}Required Methods§
fn get_bounding_box(&self) -> BoundingBox
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.