pub struct Plotbar {
pub open: f64,
pub high: f64,
pub low: f64,
pub close: f64,
pub title: String,
pub color: Option<Color>,
pub editable: bool,
pub show_last: Option<f64>,
pub display: String,
pub format: Option<String>,
pub precision: Option<f64>,
pub force_overlay: bool,
}Expand description
Represents a plotbar output
Fields§
§open: f64§high: f64§low: f64§close: f64§title: String§color: Option<Color>§editable: bool§show_last: Option<f64>§display: String§format: Option<String>§precision: Option<f64>§force_overlay: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Plotbar
impl RefUnwindSafe for Plotbar
impl Send for Plotbar
impl Sync for Plotbar
impl Unpin for Plotbar
impl UnsafeUnpin for Plotbar
impl UnwindSafe for Plotbar
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