pub enum Aggregator {
Avg,
Min,
Max,
Prod,
Ps,
}Expand description
Supported aggregator types for AND/OR operators.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for Aggregator
impl Clone for Aggregator
Source§fn clone(&self) -> Aggregator
fn clone(&self) -> Aggregator
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 Aggregator
impl Debug for Aggregator
Source§impl PartialEq for Aggregator
impl PartialEq for Aggregator
impl Copy for Aggregator
impl StructuralPartialEq for Aggregator
Auto Trait Implementations§
impl Freeze for Aggregator
impl RefUnwindSafe for Aggregator
impl Send for Aggregator
impl Sync for Aggregator
impl Unpin for Aggregator
impl UnsafeUnpin for Aggregator
impl UnwindSafe for Aggregator
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