Struct criterion_plot::candlestick::Candlesticks[][src]

pub struct Candlesticks<X, WM, BM, BH, WH> {
    pub x: X,
    pub whisker_min: WM,
    pub box_min: BM,
    pub box_high: BH,
    pub whisker_high: WH,
}

A candlestick consists of a box and two whiskers that extend beyond the box

Fields

X coordinate of the candlestick

Y coordinate of the end point of the bottom whisker

Y coordinate of the bottom of the box

Y coordinate of the top of the box

Y coordinate of the end point of the top whisker

Trait Implementations

impl<X, WM, BM, BH, WH> Plot<Candlesticks<X, WM, BM, BH, WH>> for Figure where
    BH: IntoIterator,
    BH::Item: Data,
    BM: IntoIterator,
    BM::Item: Data,
    WH: IntoIterator,
    WH::Item: Data,
    WM: IntoIterator,
    WM::Item: Data,
    X: IntoIterator,
    X::Item: Data
[src]

The properties associated to the plot

Plots some data with some configuration

Auto Trait Implementations

impl<X, WM, BM, BH, WH> Send for Candlesticks<X, WM, BM, BH, WH> where
    BH: Send,
    BM: Send,
    WH: Send,
    WM: Send,
    X: Send

impl<X, WM, BM, BH, WH> Sync for Candlesticks<X, WM, BM, BH, WH> where
    BH: Sync,
    BM: Sync,
    WH: Sync,
    WM: Sync,
    X: Sync