Searched refs:PlottingBackend (Results 1 – 1 of 1) sorted by relevance
114 static ref DEFAULT_PLOTTING_BACKEND: PlottingBackend = {116 Ok(_) => PlottingBackend::Gnuplot,125 PlottingBackend::Plotters311 pub enum PlottingBackend { enum319 impl PlottingBackend { implementation322 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()[all …]