pub trait ControlPoint<C> {
// Required methods
fn check_already_existing(&self, control_points: &C) -> bool;
fn add(self, control_points: &mut C);
}Expand description
A control point to be added into a collection of type C.
Required Methods§
Sourcefn check_already_existing(&self, control_points: &C) -> bool
fn check_already_existing(&self, control_points: &C) -> bool
Whether self is redundant w.r.t. an already existing control point.