pub struct Series {
pub name: String,
pub x: Vec<f64>,
pub y: Vec<f64>,
}Expand description
Named data series for line charts.
Fields§
§name: StringSeries display name (used in legend).
x: Vec<f64>X-coordinates.
y: Vec<f64>Y-coordinates.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Series
impl RefUnwindSafe for Series
impl Send for Series
impl Sync for Series
impl Unpin for Series
impl UnsafeUnpin for Series
impl UnwindSafe for Series
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