PivotTableDefinition

Struct PivotTableDefinition 

Source
pub struct PivotTableDefinition { /* private fields */ }

Implementations§

Source§

impl PivotTableDefinition

Source

pub fn get_apply_number_formats(&self) -> &bool

Source

pub fn set_apply_number_formats(&mut self, value: bool) -> &mut Self

Source

pub fn get_apply_border_formats(&self) -> &bool

Source

pub fn set_apply_border_formats(&mut self, value: bool) -> &mut Self

Source

pub fn get_apply_font_formats(&self) -> &bool

Source

pub fn set_apply_font_formats(&mut self, value: bool) -> &mut Self

Source

pub fn get_apply_pattern_formats(&self) -> &bool

Source

pub fn set_apply_pattern_formats(&mut self, value: bool) -> &mut Self

Source

pub fn get_apply_alignment_formats(&self) -> &bool

Source

pub fn set_apply_alignment_formats(&mut self, value: bool) -> &mut Self

Source

pub fn get_apply_width_height_formats(&self) -> &bool

Source

pub fn set_apply_width_height_formats(&mut self, value: bool) -> &mut Self

Source

pub fn get_use_auto_formatting(&self) -> &bool

Source

pub fn set_use_auto_formatting(&mut self, value: bool) -> &mut Self

Source

pub fn get_item_print_titles(&self) -> &bool

Source

pub fn set_item_print_titles(&mut self, value: bool) -> &mut Self

Source

pub fn get_outline(&self) -> &bool

Source

pub fn set_outline(&mut self, value: bool) -> &mut Self

Source

pub fn get_outline_data(&self) -> &bool

Source

pub fn set_outline_data(&mut self, value: bool) -> &mut Self

Source

pub fn get_multiple_field_filters(&self) -> &bool

Source

pub fn set_multiple_field_filters(&mut self, value: bool) -> &mut Self

Source

pub fn get_name(&self) -> &str

Source

pub fn set_name<S: Into<String>>(&mut self, value: S) -> &mut Self

Source

pub fn get_cache_id(&self) -> &u32

Source

pub fn set_cache_id(&mut self, value: u32) -> &mut Self

Source

pub fn get_indent(&self) -> &u32

Source

pub fn set_indent(&mut self, value: u32) -> &mut Self

Source

pub fn get_local_name(&self) -> &str

Source

pub fn set_local_name<S: Into<String>>(&mut self, value: S) -> &mut Self

Source

pub fn get_data_caption(&self) -> &str

Source

pub fn set_data_caption<S: Into<String>>(&mut self, value: S) -> &mut Self

Source

pub fn get_updated_version(&self) -> &u8

Source

pub fn set_updated_version(&mut self, value: u8) -> &mut Self

Source

pub fn get_min_refreshable_version(&self) -> &u8

Source

pub fn set_min_refreshable_version(&mut self, value: u8) -> &mut Self

Source

pub fn get_created_version(&self) -> &u8

Source

pub fn set_created_version(&mut self, value: u8) -> &mut Self

Source

pub fn get_location(&self) -> &Location

Source

pub fn get_location_mut(&mut self) -> &mut Location

Source

pub fn set_location(&mut self, value: Location) -> &mut Self

Source

pub fn get_pivot_fields(&self) -> &PivotFields

Source

pub fn get_pivot_fields_mut(&mut self) -> &mut PivotFields

Source

pub fn set_pivot_fields(&mut self, value: PivotFields) -> &mut Self

Source

pub fn get_row_items(&self) -> &RowItems

Source

pub fn get_row_items_mut(&mut self) -> &mut RowItems

Source

pub fn set_row_items(&mut self, value: RowItems) -> &mut Self

Source

pub fn get_column_fields(&self) -> &ColumnFields

Source

pub fn get_column_fields_mut(&mut self) -> &mut ColumnFields

Source

pub fn set_column_fields(&mut self, value: ColumnFields) -> &mut Self

Source

pub fn get_column_items(&self) -> &ColumnItems

Source

pub fn get_column_items_mut(&mut self) -> &mut ColumnItems

Source

pub fn set_column_items(&mut self, value: ColumnItems) -> &mut Self

Source

pub fn get_data_fields(&self) -> &DataFields

Source

pub fn get_data_fields_mut(&mut self) -> &mut DataFields

Source

pub fn set_data_fields(&mut self, value: DataFields) -> &mut Self

Source

pub fn get_pivot_table_style(&self) -> &PivotTableStyle

Source

pub fn get_pivot_table_style_mut(&mut self) -> &mut PivotTableStyle

Source

pub fn set_pivot_table_style(&mut self, value: PivotTableStyle) -> &mut Self

Trait Implementations§

Source§

impl Clone for PivotTableDefinition

Source§

fn clone(&self) -> PivotTableDefinition

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PivotTableDefinition

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PivotTableDefinition

Source§

fn default() -> PivotTableDefinition

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.