pub trait QbvhDataGenerator<LeafData> {
// Required methods
fn size_hint(&self) -> usize;
fn for_each(&mut self, f: impl FnMut(LeafData, Aabb));
}
Expand description
Trait used for generating the content of the leaves of the Qbvh acceleration structure.
Required Methods§
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.