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

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: X

X coordinate of the candlestick

whisker_min: WM

Y coordinate of the end point of the bottom whisker

box_min: BM

Y coordinate of the bottom of the box

box_high: BH

Y coordinate of the top of the box

whisker_high: WH

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]

type Properties = Properties

The properties associated to the plot

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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.