pub struct SeriesFormat {
pub fill: Option<FillFormat>,
pub line: Option<LineFormat>,
}Expand description
Format properties for a series (fill and line).
Fields§
§fill: Option<FillFormat>Fill format for the series (bars, area, etc).
line: Option<LineFormat>Line format for the series outline / line.
Implementations§
Source§impl SeriesFormat
impl SeriesFormat
Trait Implementations§
Source§impl Clone for SeriesFormat
impl Clone for SeriesFormat
Source§fn clone(&self) -> SeriesFormat
fn clone(&self) -> SeriesFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SeriesFormat
impl Debug for SeriesFormat
Auto Trait Implementations§
impl Freeze for SeriesFormat
impl RefUnwindSafe for SeriesFormat
impl Send for SeriesFormat
impl Sync for SeriesFormat
impl Unpin for SeriesFormat
impl UnsafeUnpin for SeriesFormat
impl UnwindSafe for SeriesFormat
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