pub enum AggregationFnSpec {
Auto,
BuiltIn(BuiltInAggregationFn),
Named(Arc<str>),
None,
}Variants§
Auto
TanStack aggregationFn: 'auto' (default).
BuiltIn(BuiltInAggregationFn)
Named(Arc<str>)
TanStack aggregationFn: <string> resolved via options.aggregationFns[key] ?? builtIn[key].
None
No aggregation for this column.
Trait Implementations§
Source§impl Clone for AggregationFnSpec
impl Clone for AggregationFnSpec
Source§fn clone(&self) -> AggregationFnSpec
fn clone(&self) -> AggregationFnSpec
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 AggregationFnSpec
impl Debug for AggregationFnSpec
Source§impl Default for AggregationFnSpec
impl Default for AggregationFnSpec
Source§fn default() -> AggregationFnSpec
fn default() -> AggregationFnSpec
Returns the “default value” for a type. Read more
Source§impl PartialEq for AggregationFnSpec
impl PartialEq for AggregationFnSpec
impl Eq for AggregationFnSpec
impl StructuralPartialEq for AggregationFnSpec
Auto Trait Implementations§
impl Freeze for AggregationFnSpec
impl RefUnwindSafe for AggregationFnSpec
impl Send for AggregationFnSpec
impl Sync for AggregationFnSpec
impl Unpin for AggregationFnSpec
impl UnsafeUnpin for AggregationFnSpec
impl UnwindSafe for AggregationFnSpec
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