Home
last modified time | relevance | path

Searched refs:PlottingBackend (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/criterion/src/
Dlib.rs114 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()
[all …]