pub struct PivotAxisItem {
pub labels: Vec<Option<String>>,
pub is_subtotal: bool,
pub is_grand_total: bool,
}Expand description
One flattened group along a row or column axis: a label per axis field
(None past its own depth), plus whether it’s a subtotal or grand-total
pseudo-group rather than a real leaf group.
Fields§
§labels: Vec<Option<String>>One entry per field in this axis, None past this group’s own depth.
is_subtotal: boolWhether this is a subtotal pseudo-group rather than a leaf group.
is_grand_total: boolWhether this is the axis’s grand-total pseudo-group.
Trait Implementations§
Source§impl Clone for PivotAxisItem
impl Clone for PivotAxisItem
Source§fn clone(&self) -> PivotAxisItem
fn clone(&self) -> PivotAxisItem
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 PivotAxisItem
impl RefUnwindSafe for PivotAxisItem
impl Send for PivotAxisItem
impl Sync for PivotAxisItem
impl Unpin for PivotAxisItem
impl UnsafeUnpin for PivotAxisItem
impl UnwindSafe for PivotAxisItem
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