pub struct PivotBodyRow {
pub row_labels: Vec<String>,
pub is_grand_total: bool,
pub values: Vec<ResultData>,
}Expand description
One row of a computed pivot’s body: its row-field labels and its aggregated values.
Fields§
§row_labels: Vec<String>One entry per row field (or a single “Grand Total” entry when there are no row fields); blank entries mean “same as the row above”.
is_grand_total: boolWhether this row is the grand total rather than a data or subtotal row.
values: Vec<ResultData>One entry per data column, aligned with the last header_rows row.
Trait Implementations§
Source§impl Clone for PivotBodyRow
impl Clone for PivotBodyRow
Source§fn clone(&self) -> PivotBodyRow
fn clone(&self) -> PivotBodyRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PivotBodyRow
impl RefUnwindSafe for PivotBodyRow
impl Send for PivotBodyRow
impl Sync for PivotBodyRow
impl Unpin for PivotBodyRow
impl UnsafeUnpin for PivotBodyRow
impl UnwindSafe for PivotBodyRow
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