pub struct PivotTableDefinition {Show 15 fields
pub xmlns: String,
pub name: String,
pub cache_id: u32,
pub data_on_rows: Option<bool>,
pub apply_number_formats: Option<bool>,
pub apply_border_formats: Option<bool>,
pub apply_font_formats: Option<bool>,
pub apply_pattern_formats: Option<bool>,
pub apply_alignment_formats: Option<bool>,
pub apply_width_height_formats: Option<bool>,
pub location: PivotLocation,
pub pivot_fields: PivotFields,
pub row_fields: Option<FieldList>,
pub col_fields: Option<FieldList>,
pub data_fields: Option<DataFields>,
}Expand description
Root element for a pivot table definition.
Fields§
§xmlns: String§name: String§cache_id: u32§data_on_rows: Option<bool>§apply_number_formats: Option<bool>§apply_border_formats: Option<bool>§apply_font_formats: Option<bool>§apply_pattern_formats: Option<bool>§apply_alignment_formats: Option<bool>§apply_width_height_formats: Option<bool>§location: PivotLocation§pivot_fields: PivotFields§row_fields: Option<FieldList>§col_fields: Option<FieldList>§data_fields: Option<DataFields>Trait Implementations§
Source§impl Clone for PivotTableDefinition
impl Clone for PivotTableDefinition
Source§fn clone(&self) -> PivotTableDefinition
fn clone(&self) -> PivotTableDefinition
Returns a duplicate 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 Debug for PivotTableDefinition
impl Debug for PivotTableDefinition
Source§impl<'de> Deserialize<'de> for PivotTableDefinition
impl<'de> Deserialize<'de> for PivotTableDefinition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PivotTableDefinition
impl PartialEq for PivotTableDefinition
Source§impl Serialize for PivotTableDefinition
impl Serialize for PivotTableDefinition
impl StructuralPartialEq for PivotTableDefinition
Auto Trait Implementations§
impl Freeze for PivotTableDefinition
impl RefUnwindSafe for PivotTableDefinition
impl Send for PivotTableDefinition
impl Sync for PivotTableDefinition
impl Unpin for PivotTableDefinition
impl UnwindSafe for PivotTableDefinition
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