pub enum Aggregate {
CountAll,
Count(Scalar),
Sum(Scalar),
Min(Scalar),
Max(Scalar),
}Expand description
Aggregate operations with domain-derived result types.
Variants§
CountAll
Count all input rows.
Count(Scalar)
Count non-null values.
Sum(Scalar)
Sum ordered numeric values.
Min(Scalar)
Minimum ordered value.
Max(Scalar)
Maximum ordered value.
Trait Implementations§
impl Eq for Aggregate
impl StructuralPartialEq for Aggregate
Auto Trait Implementations§
impl Freeze for Aggregate
impl RefUnwindSafe for Aggregate
impl Send for Aggregate
impl Sync for Aggregate
impl Unpin for Aggregate
impl UnsafeUnpin for Aggregate
impl UnwindSafe for Aggregate
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