pub struct PivotFieldDef {
pub axis: Option<String>,
pub data_field: Option<bool>,
pub show_all: Option<bool>,
pub items: Option<FieldItems>,
}Expand description
Individual pivot field definition.
Fields§
§axis: Option<String>§data_field: Option<bool>§show_all: Option<bool>§items: Option<FieldItems>Trait Implementations§
Source§impl Clone for PivotFieldDef
impl Clone for PivotFieldDef
Source§fn clone(&self) -> PivotFieldDef
fn clone(&self) -> PivotFieldDef
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 PivotFieldDef
impl Debug for PivotFieldDef
Source§impl<'de> Deserialize<'de> for PivotFieldDef
impl<'de> Deserialize<'de> for PivotFieldDef
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 PivotFieldDef
impl PartialEq for PivotFieldDef
Source§impl Serialize for PivotFieldDef
impl Serialize for PivotFieldDef
impl StructuralPartialEq for PivotFieldDef
Auto Trait Implementations§
impl Freeze for PivotFieldDef
impl RefUnwindSafe for PivotFieldDef
impl Send for PivotFieldDef
impl Sync for PivotFieldDef
impl Unpin for PivotFieldDef
impl UnwindSafe for PivotFieldDef
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