pub trait InnerFeature:
Display
+ DynClone
+ Debug {
// Required methods
fn name(&self) -> &'static str;
fn translate(&mut self, v: Coordinate<f64>);
fn atoms(&self) -> Vec<InnerAtom>;
}
Expand description
Specifies geometry interior to the bounds of the panel.