pub struct Plotcandle {Show 14 fields
pub open: f64,
pub high: f64,
pub low: f64,
pub close: f64,
pub title: String,
pub color: Option<Color>,
pub wickcolor: Option<Color>,
pub editable: bool,
pub show_last: Option<f64>,
pub bordercolor: Option<Color>,
pub display: String,
pub format: Option<String>,
pub precision: Option<f64>,
pub force_overlay: bool,
}Expand description
Represents a plotcandle output
Fields§
§open: f64§high: f64§low: f64§close: f64§title: String§color: Option<Color>§wickcolor: Option<Color>§editable: bool§show_last: Option<f64>§bordercolor: Option<Color>§display: String§format: Option<String>§precision: Option<f64>§force_overlay: boolTrait Implementations§
Source§impl Clone for Plotcandle
impl Clone for Plotcandle
Source§fn clone(&self) -> Plotcandle
fn clone(&self) -> Plotcandle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Plotcandle
impl RefUnwindSafe for Plotcandle
impl Send for Plotcandle
impl Sync for Plotcandle
impl Unpin for Plotcandle
impl UnsafeUnpin for Plotcandle
impl UnwindSafe for Plotcandle
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