pub trait Plot {
// Required methods
fn ir_traces(&self) -> &[TraceIR];
fn ir_layout(&self) -> &LayoutIR;
}Expand description
Core trait implemented by all plot types. Provides access to the intermediate representation (IR) data.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".