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.
pub trait Plot {
// Required methods
fn ir_traces(&self) -> &[TraceIR];
fn ir_layout(&self) -> &LayoutIR;
}Core trait implemented by all plot types. Provides access to the intermediate representation (IR) data.