Enum datafusion_expr::ReversedUDAF
source · pub enum ReversedUDAF {
Identical,
NotSupported,
Reversed(Arc<AggregateUDF>),
}
Variants§
Identical
The expression is the same as the original expression, like SUM, COUNT
NotSupported
The expression does not support reverse calculation
Reversed(Arc<AggregateUDF>)
The expression is different from the original expression
Auto Trait Implementations§
impl Freeze for ReversedUDAF
impl !RefUnwindSafe for ReversedUDAF
impl Send for ReversedUDAF
impl Sync for ReversedUDAF
impl Unpin for ReversedUDAF
impl !UnwindSafe for ReversedUDAF
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