pub trait Plotable { // Required methods fn plot(&self) -> Box<dyn View>; fn as_plot(&self) -> Plot; }
Plottables can be made into plotlib Plots
Returns a plotlib Plot representing this object