#[non_exhaustive]pub struct PivotTableTotalOptionsBuilder { /* private fields */ }Expand description
A builder for PivotTableTotalOptions.
Implementations§
source§impl PivotTableTotalOptionsBuilder
 
impl PivotTableTotalOptionsBuilder
sourcepub fn row_subtotal_options(self, input: SubtotalOptions) -> Self
 
pub fn row_subtotal_options(self, input: SubtotalOptions) -> Self
The row subtotal options.
sourcepub fn set_row_subtotal_options(self, input: Option<SubtotalOptions>) -> Self
 
pub fn set_row_subtotal_options(self, input: Option<SubtotalOptions>) -> Self
The row subtotal options.
sourcepub fn get_row_subtotal_options(&self) -> &Option<SubtotalOptions>
 
pub fn get_row_subtotal_options(&self) -> &Option<SubtotalOptions>
The row subtotal options.
sourcepub fn column_subtotal_options(self, input: SubtotalOptions) -> Self
 
pub fn column_subtotal_options(self, input: SubtotalOptions) -> Self
The column subtotal options.
sourcepub fn set_column_subtotal_options(self, input: Option<SubtotalOptions>) -> Self
 
pub fn set_column_subtotal_options(self, input: Option<SubtotalOptions>) -> Self
The column subtotal options.
sourcepub fn get_column_subtotal_options(&self) -> &Option<SubtotalOptions>
 
pub fn get_column_subtotal_options(&self) -> &Option<SubtotalOptions>
The column subtotal options.
sourcepub fn row_total_options(self, input: PivotTotalOptions) -> Self
 
pub fn row_total_options(self, input: PivotTotalOptions) -> Self
The row total options.
sourcepub fn set_row_total_options(self, input: Option<PivotTotalOptions>) -> Self
 
pub fn set_row_total_options(self, input: Option<PivotTotalOptions>) -> Self
The row total options.
sourcepub fn get_row_total_options(&self) -> &Option<PivotTotalOptions>
 
pub fn get_row_total_options(&self) -> &Option<PivotTotalOptions>
The row total options.
sourcepub fn column_total_options(self, input: PivotTotalOptions) -> Self
 
pub fn column_total_options(self, input: PivotTotalOptions) -> Self
The column total options.
sourcepub fn set_column_total_options(self, input: Option<PivotTotalOptions>) -> Self
 
pub fn set_column_total_options(self, input: Option<PivotTotalOptions>) -> Self
The column total options.
sourcepub fn get_column_total_options(&self) -> &Option<PivotTotalOptions>
 
pub fn get_column_total_options(&self) -> &Option<PivotTotalOptions>
The column total options.
sourcepub fn build(self) -> PivotTableTotalOptions
 
pub fn build(self) -> PivotTableTotalOptions
Consumes the builder and constructs a PivotTableTotalOptions.
Trait Implementations§
source§impl Clone for PivotTableTotalOptionsBuilder
 
impl Clone for PivotTableTotalOptionsBuilder
source§fn clone(&self) -> PivotTableTotalOptionsBuilder
 
fn clone(&self) -> PivotTableTotalOptionsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Default for PivotTableTotalOptionsBuilder
 
impl Default for PivotTableTotalOptionsBuilder
source§fn default() -> PivotTableTotalOptionsBuilder
 
fn default() -> PivotTableTotalOptionsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PivotTableTotalOptionsBuilder> for PivotTableTotalOptionsBuilder
 
impl PartialEq<PivotTableTotalOptionsBuilder> for PivotTableTotalOptionsBuilder
source§fn eq(&self, other: &PivotTableTotalOptionsBuilder) -> bool
 
fn eq(&self, other: &PivotTableTotalOptionsBuilder) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PivotTableTotalOptionsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for PivotTableTotalOptionsBuilder
impl Send for PivotTableTotalOptionsBuilder
impl Sync for PivotTableTotalOptionsBuilder
impl Unpin for PivotTableTotalOptionsBuilder
impl UnwindSafe for PivotTableTotalOptionsBuilder
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