Trait criterion_plot::traits::Plot
source · [−]pub trait Plot<This> {
type Properties;
fn plot<F>(&mut self, this: This, function: F) -> &mut Self
where
F: FnOnce(&mut Self::Properties) -> &mut Self::Properties;
}
Expand description
Overloaded plot
method
Required Associated Types
sourcetype Properties
type Properties
The properties associated to the plot
Required Methods
sourcefn plot<F>(&mut self, this: This, function: F) -> &mut Selfwhere
F: FnOnce(&mut Self::Properties) -> &mut Self::Properties,
fn plot<F>(&mut self, this: This, function: F) -> &mut Selfwhere
F: FnOnce(&mut Self::Properties) -> &mut Self::Properties,
Plots some data
with some configuration