#[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 for PivotTableTotalOptionsBuilder
impl PartialEq for PivotTableTotalOptionsBuilder
source§fn eq(&self, other: &PivotTableTotalOptionsBuilder) -> bool
fn eq(&self, other: &PivotTableTotalOptionsBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PivotTableTotalOptionsBuilder
Auto Trait Implementations§
impl Freeze for PivotTableTotalOptionsBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.