Trait criterion_plot::traits::Plot[][src]

pub trait Plot<This> {
    type Properties;
    fn plot<F>(&mut self, _: This, _: F) -> &mut Self
    where
        F: FnOnce(&mut Self::Properties) -> &mut Self::Properties
; }

Overloaded plot method

Associated Types

The properties associated to the plot

Required Methods

Plots some data with some configuration

Implementors