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

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

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.