pub struct LineSeries {
pub name: String,
pub color: RgbColor,
pub width: u32,
pub points: Vec<LinePoint>,
}Fields§
§name: String§color: RgbColor§width: u32§points: Vec<LinePoint>Trait Implementations§
Source§impl Clone for LineSeries
impl Clone for LineSeries
Source§fn clone(&self) -> LineSeries
fn clone(&self) -> LineSeries
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 LineSeries
impl Debug for LineSeries
Source§impl PartialEq for LineSeries
impl PartialEq for LineSeries
impl StructuralPartialEq for LineSeries
Auto Trait Implementations§
impl Freeze for LineSeries
impl RefUnwindSafe for LineSeries
impl Send for LineSeries
impl Sync for LineSeries
impl Unpin for LineSeries
impl UnsafeUnpin for LineSeries
impl UnwindSafe for LineSeries
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