pub struct Source {
pub mark: Mark,
pub x_field: String,
pub y_field: String,
pub aggregate: Option<Aggregate>,
pub series_points: Vec<usize>,
pub data_source: DataSource,
pub truncated: Option<bool>,
pub total_rows: Option<u64>,
}Fields§
§mark: Mark§x_field: String§y_field: String§aggregate: Option<Aggregate>§series_points: Vec<usize>Points-per-series counts etc. needed to reproduce –meta exactly.
data_source: DataSourceData provenance (from Table::provenance). Drives the conditional
--meta data block; always serialized (null when absent) so
--dump-scene shows it.
truncated: Option<bool>§total_rows: Option<u64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Source
impl RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl UnsafeUnpin for Source
impl UnwindSafe for Source
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