Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
Curve in criterion_plot::curve - Rust
[go: Go Back, main page]

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,
    },
}
Expand description

Types of “curve” plots

Variants

Dots

A minimally sized dot on each data point

Fields of Dots

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

Impulses

A vertical “impulse” on each data point

Fields of Impulses

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

Lines

Line that joins the data points

Fields of Lines

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

LinesPoints

Line with a point on each data point

Fields of LinesPoints

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

Points

A point on each data point

Fields of Points

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

Steps

An step _| between each data point

Fields of Steps

x: X

X coordinate of the data points

y: Y

Y coordinate of the data points

Trait Implementations

The properties associated to the plot

Plots some data with some configuration

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.