pub enum AggregateFunction {
Sum,
Count,
Average,
Max,
Min,
Product,
CountNums,
StdDev,
StdDevP,
Var,
VarP,
}Expand description
Aggregate function for pivot table data fields.
Variants§
Implementations§
Source§impl AggregateFunction
impl AggregateFunction
Sourcepub fn to_xml_str(&self) -> &str
pub fn to_xml_str(&self) -> &str
Returns the XML string representation of this aggregate function.
Sourcepub fn from_xml_str(s: &str) -> Option<Self>
pub fn from_xml_str(s: &str) -> Option<Self>
Parses an aggregate function from its XML string representation.
Trait Implementations§
Source§impl Clone for AggregateFunction
impl Clone for AggregateFunction
Source§fn clone(&self) -> AggregateFunction
fn clone(&self) -> AggregateFunction
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 AggregateFunction
impl Debug for AggregateFunction
Source§impl PartialEq for AggregateFunction
impl PartialEq for AggregateFunction
impl StructuralPartialEq for AggregateFunction
Auto Trait Implementations§
impl Freeze for AggregateFunction
impl RefUnwindSafe for AggregateFunction
impl Send for AggregateFunction
impl Sync for AggregateFunction
impl Unpin for AggregateFunction
impl UnwindSafe for AggregateFunction
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