pub struct Plot {Show 16 fields
pub series: f64,
pub title: String,
pub color: Option<Color>,
pub linewidth: f64,
pub style: String,
pub trackprice: bool,
pub histbase: f64,
pub offset: f64,
pub join: bool,
pub editable: bool,
pub show_last: Option<f64>,
pub display: String,
pub format: Option<String>,
pub precision: Option<f64>,
pub force_overlay: bool,
pub linestyle: String,
}Expand description
Represents a plot output
Fields§
§series: f64§title: String§color: Option<Color>§linewidth: f64§style: String§trackprice: bool§histbase: f64§offset: f64§join: bool§editable: bool§show_last: Option<f64>§display: String§format: Option<String>§precision: Option<f64>§force_overlay: bool§linestyle: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Plot
impl RefUnwindSafe for Plot
impl Send for Plot
impl Sync for Plot
impl Unpin for Plot
impl UnsafeUnpin for Plot
impl UnwindSafe for Plot
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