Struct CandleStick
pub struct CandleStick<X, Y>where
Y: PartialOrd,{ /* private fields */ }Expand description
The candlestick data point element
Implementations§
§impl<X, Y> CandleStick<X, Y>where
X: Clone,
Y: PartialOrd,
impl<X, Y> CandleStick<X, Y>where
X: Clone,
Y: PartialOrd,
pub fn new<GS, LS>(
x: X,
open: Y,
high: Y,
low: Y,
close: Y,
gain_style: GS,
loss_style: LS,
width: u32,
) -> CandleStick<X, Y>
pub fn new<GS, LS>( x: X, open: Y, high: Y, low: Y, close: Y, gain_style: GS, loss_style: LS, width: u32, ) -> CandleStick<X, Y>
Create a new candlestick element, which requires the Y coordinate can be compared
x: The x coordinateopen: The open valuehigh: The high valuelow: The low valueclose: The close valuegain_style: The style for gainloss_style: The style for losswidth: The width- returns The newly created candlestick element
use chrono::prelude::*;
use plotters::prelude::*;
let candlestick = CandleStick::new(Local::now(), 130.0600, 131.3700, 128.8300, 129.1500, &GREEN, &RED, 15);Trait Implementations§
§impl<X, Y, DB> Drawable<DB> for CandleStick<X, Y>where
Y: PartialOrd,
DB: DrawingBackend,
impl<X, Y, DB> Drawable<DB> for CandleStick<X, Y>where
Y: PartialOrd,
DB: DrawingBackend,
§impl<'a, X, Y> PointCollection<'a, (X, Y)> for &'a CandleStick<X, Y>where
X: 'a,
Y: PartialOrd + 'a,
impl<'a, X, Y> PointCollection<'a, (X, Y)> for &'a CandleStick<X, Y>where
X: 'a,
Y: PartialOrd + 'a,
Auto Trait Implementations§
impl<X, Y> Freeze for CandleStick<X, Y>
impl<X, Y> RefUnwindSafe for CandleStick<X, Y>where
X: RefUnwindSafe,
Y: RefUnwindSafe,
impl<X, Y> Send for CandleStick<X, Y>
impl<X, Y> Sync for CandleStick<X, Y>
impl<X, Y> Unpin for CandleStick<X, Y>
impl<X, Y> UnwindSafe for CandleStick<X, Y>where
X: UnwindSafe,
Y: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<'b, T, DB, Coord> IntoDynElement<'b, DB, Coord> for Twhere
T: Drawable<DB> + 'b,
&'a T: for<'a> PointCollection<'a, Coord>,
Coord: Clone,
DB: DrawingBackend,
impl<'b, T, DB, Coord> IntoDynElement<'b, DB, Coord> for Twhere
T: Drawable<DB> + 'b,
&'a T: for<'a> PointCollection<'a, Coord>,
Coord: Clone,
DB: DrawingBackend,
§fn into_dyn(self) -> DynElement<'b, DB, Coord>
fn into_dyn(self) -> DynElement<'b, DB, Coord>
Make the conversion
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more