Enum criterion_plot::curve::Curve[][src]

pub enum Curve<X, Y> {
    Dots {
        x: X,
        y: Y,
    },
    Impulses {
        x: X,
        y: Y,
    },
    Lines {
        x: X,
        y: Y,
    },
    LinesPoints {
        x: X,
        y: Y,
    },
    Points {
        x: X,
        y: Y,
    },
    Steps {
        x: X,
        y: Y,
    },
}

Types of "curve" plots

Variants

A minimally sized dot on each data point

Fields of Dots

X coordinate of the data points

Y coordinate of the data points

A vertical "impulse" on each data point

Fields of Impulses

X coordinate of the data points

Y coordinate of the data points

Line that joins the data points

Fields of Lines

X coordinate of the data points

Y coordinate of the data points

Line with a point on each data point

Fields of LinesPoints

X coordinate of the data points

Y coordinate of the data points

A point on each data point

Fields of Points

X coordinate of the data points

Y coordinate of the data points

An step _| between each data point

Fields of Steps

X coordinate of the data points

Y coordinate of the data points

Trait Implementations

impl<X, Y> Plot<Curve<X, Y>> for Figure where
    X: IntoIterator,
    X::Item: Data,
    Y: IntoIterator,
    Y::Item: Data
[src]

The properties associated to the plot

Plots some data with some configuration

Auto Trait Implementations

impl<X, Y> Send for Curve<X, Y> where
    X: Send,
    Y: Send

impl<X, Y> Sync for Curve<X, Y> where
    X: Sync,
    Y: Sync