Lines Matching refs:PlottingBackend
114 static ref DEFAULT_PLOTTING_BACKEND: PlottingBackend = {
116 Ok(_) => PlottingBackend::Gnuplot,
125 PlottingBackend::Plotters
311 pub enum PlottingBackend { enum
319 impl PlottingBackend { implementation
322 PlottingBackend::Gnuplot => Box::new(Gnuplot::default()), in create_plotter()
323 PlottingBackend::Plotters => Box::new(PlottersBackend::default()), in create_plotter()
496 pub fn plotting_backend(mut self, backend: PlottingBackend) -> Criterion<M> { in plotting_backend()
497 if let PlottingBackend::Gnuplot = backend { in plotting_backend()
927 Some("gnuplot") => self = self.plotting_backend(PlottingBackend::Gnuplot), in configure_from_args()
928 Some("plotters") => self = self.plotting_backend(PlottingBackend::Plotters), in configure_from_args()