Struct criterion_plot::filledcurve::FilledCurve[][src]

pub struct FilledCurve<X, Y1, Y2> {
    pub x: X,
    pub y1: Y1,
    pub y2: Y2,
}

Fills the area between two curves

Fields

X coordinate of the data points of both curves

Y coordinate of the data points of the first curve

Y coordinate of the data points of the second curve

Trait Implementations

impl<X, Y1, Y2> Plot<FilledCurve<X, Y1, Y2>> for Figure where
    X: IntoIterator,
    X::Item: Data,
    Y1: IntoIterator,
    Y1::Item: Data,
    Y2: IntoIterator,
    Y2::Item: Data
[src]

The properties associated to the plot

Plots some data with some configuration

Auto Trait Implementations

impl<X, Y1, Y2> Send for FilledCurve<X, Y1, Y2> where
    X: Send,
    Y1: Send,
    Y2: Send

impl<X, Y1, Y2> Sync for FilledCurve<X, Y1, Y2> where
    X: Sync,
    Y1: Sync,
    Y2: Sync