pub trait GetCutPoint<A, P> {
// Required method
fn cut_point<I>(&mut self, cut_axis: &A, points: I) -> Option<P>
where I: Iterator<Item = P>;
}
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.