pub enum AggregateFunctionDefinition {
BuiltIn(AggregateFunction),
UDF(Arc<AggregateUDF>),
}
Expand description
Defines which implementation of an aggregate function DataFusion should call.
Variants§
Implementations§
Trait Implementations§
source§impl Clone for AggregateFunctionDefinition
impl Clone for AggregateFunctionDefinition
source§fn clone(&self) -> AggregateFunctionDefinition
fn clone(&self) -> AggregateFunctionDefinition
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 Debug for AggregateFunctionDefinition
impl Debug for AggregateFunctionDefinition
source§impl Hash for AggregateFunctionDefinition
impl Hash for AggregateFunctionDefinition
source§impl PartialEq for AggregateFunctionDefinition
impl PartialEq for AggregateFunctionDefinition
source§fn eq(&self, other: &AggregateFunctionDefinition) -> bool
fn eq(&self, other: &AggregateFunctionDefinition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AggregateFunctionDefinition
impl StructuralPartialEq for AggregateFunctionDefinition
Auto Trait Implementations§
impl Freeze for AggregateFunctionDefinition
impl !RefUnwindSafe for AggregateFunctionDefinition
impl Send for AggregateFunctionDefinition
impl Sync for AggregateFunctionDefinition
impl Unpin for AggregateFunctionDefinition
impl !UnwindSafe for AggregateFunctionDefinition
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.