pub enum SimpleAggFunc {
Show 16 variants
Any,
AnyLast,
Min,
Max,
Sum,
SumWithOverflow,
GroupBitAnd,
GroupBitOr,
GroupBitXor,
GroupArrayArray,
GroupUniqArrayArray,
SumMap,
MinMap,
MaxMap,
ArgMin,
ArgMax,
}Variants§
Any
AnyLast
Min
Max
Sum
SumWithOverflow
GroupBitAnd
GroupBitOr
GroupBitXor
GroupArrayArray
GroupUniqArrayArray
SumMap
MinMap
MaxMap
ArgMin
ArgMax
Trait Implementations§
Source§impl Clone for SimpleAggFunc
impl Clone for SimpleAggFunc
Source§fn clone(&self) -> SimpleAggFunc
fn clone(&self) -> SimpleAggFunc
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 SimpleAggFunc
impl Debug for SimpleAggFunc
Source§impl From<SimpleAggFunc> for &str
impl From<SimpleAggFunc> for &str
Source§fn from(source: SimpleAggFunc) -> &'static str
fn from(source: SimpleAggFunc) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for SimpleAggFunc
impl FromStr for SimpleAggFunc
Source§impl Hash for SimpleAggFunc
impl Hash for SimpleAggFunc
Source§impl PartialEq for SimpleAggFunc
impl PartialEq for SimpleAggFunc
Source§impl PartialOrd for SimpleAggFunc
impl PartialOrd for SimpleAggFunc
impl Copy for SimpleAggFunc
impl Eq for SimpleAggFunc
impl StructuralPartialEq for SimpleAggFunc
Auto Trait Implementations§
impl Freeze for SimpleAggFunc
impl RefUnwindSafe for SimpleAggFunc
impl Send for SimpleAggFunc
impl Sync for SimpleAggFunc
impl Unpin for SimpleAggFunc
impl UnwindSafe for SimpleAggFunc
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more