Enum criterion::PlottingBackend
source · [−]pub enum PlottingBackend {
Gnuplot,
Plotters,
None,
}
Expand description
Enum used to select the plotting backend.
Variants
Gnuplot
Plotting backend which uses the external gnuplot
command to render plots. This is the
default if the gnuplot
command is installed.
Plotters
Plotting backend which uses the rust ‘Plotters’ library. This is the default if gnuplot
is not installed.
None
Null plotting backend which outputs nothing,
Trait Implementations
sourceimpl Clone for PlottingBackend
impl Clone for PlottingBackend
sourcefn clone(&self) -> PlottingBackend
fn clone(&self) -> PlottingBackend
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PlottingBackend
impl Debug for PlottingBackend
impl Copy for PlottingBackend
Auto Trait Implementations
impl RefUnwindSafe for PlottingBackend
impl Send for PlottingBackend
impl Sync for PlottingBackend
impl Unpin for PlottingBackend
impl UnwindSafe for PlottingBackend
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more