#[non_exhaustive]pub struct PivotTableConditionalFormattingScope {
    pub role: Option<PivotTableConditionalFormattingScopeRole>,
}Expand description
The scope of the cell for conditional formatting.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.role: Option<PivotTableConditionalFormattingScopeRole>The role (field, field total, grand total) of the cell for conditional formatting.
Implementations§
source§impl PivotTableConditionalFormattingScope
 
impl PivotTableConditionalFormattingScope
sourcepub fn role(&self) -> Option<&PivotTableConditionalFormattingScopeRole>
 
pub fn role(&self) -> Option<&PivotTableConditionalFormattingScopeRole>
The role (field, field total, grand total) of the cell for conditional formatting.
source§impl PivotTableConditionalFormattingScope
 
impl PivotTableConditionalFormattingScope
sourcepub fn builder() -> PivotTableConditionalFormattingScopeBuilder
 
pub fn builder() -> PivotTableConditionalFormattingScopeBuilder
Creates a new builder-style object to manufacture PivotTableConditionalFormattingScope.
Trait Implementations§
source§impl Clone for PivotTableConditionalFormattingScope
 
impl Clone for PivotTableConditionalFormattingScope
source§fn clone(&self) -> PivotTableConditionalFormattingScope
 
fn clone(&self) -> PivotTableConditionalFormattingScope
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 PartialEq for PivotTableConditionalFormattingScope
 
impl PartialEq for PivotTableConditionalFormattingScope
source§fn eq(&self, other: &PivotTableConditionalFormattingScope) -> bool
 
fn eq(&self, other: &PivotTableConditionalFormattingScope) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PivotTableConditionalFormattingScope
Auto Trait Implementations§
impl Freeze for PivotTableConditionalFormattingScope
impl RefUnwindSafe for PivotTableConditionalFormattingScope
impl Send for PivotTableConditionalFormattingScope
impl Sync for PivotTableConditionalFormattingScope
impl Unpin for PivotTableConditionalFormattingScope
impl UnwindSafe for PivotTableConditionalFormattingScope
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> 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>
Creates a shared type from an unshared type.