pub enum AggregationType {
Sum,
Count,
}Variants§
Trait Implementations§
Source§impl Clone for AggregationType
impl Clone for AggregationType
Source§fn clone(&self) -> AggregationType
fn clone(&self) -> AggregationType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AggregationType
Source§impl Debug for AggregationType
impl Debug for AggregationType
impl Eq for AggregationType
Source§impl Hash for AggregationType
impl Hash for AggregationType
Source§impl PartialEq for AggregationType
impl PartialEq for AggregationType
Source§fn eq(&self, other: &AggregationType) -> bool
fn eq(&self, other: &AggregationType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AggregationType
Auto Trait Implementations§
impl Freeze for AggregationType
impl RefUnwindSafe for AggregationType
impl Send for AggregationType
impl Sync for AggregationType
impl Unpin for AggregationType
impl UnsafeUnpin for AggregationType
impl UnwindSafe for AggregationType
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