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.
Required Methods§
fn name(&self) -> &'static str
fn translate(&mut self, v: Coordinate<f64>)
fn atoms(&self) -> Vec<InnerAtom>
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".