pub trait Plotable {
// Required methods
fn plot(&self) -> Box<dyn View>;
fn as_plot(&self) -> Plot;
}Expand description
Plottables can be made into plotlib Plots
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".