pub struct ChartData {
pub categories: Vec<String>,
pub series: Vec<(String, Vec<f64>)>,
pub number_format: Option<String>,
}Expand description
Data used to author one chart and its editable workbook.
Fields§
§categories: Vec<String>§series: Vec<(String, Vec<f64>)>§number_format: Option<String>Trait Implementations§
impl StructuralPartialEq for ChartData
Auto Trait Implementations§
impl Freeze for ChartData
impl RefUnwindSafe for ChartData
impl Send for ChartData
impl Sync for ChartData
impl Unpin for ChartData
impl UnsafeUnpin for ChartData
impl UnwindSafe for ChartData
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