pub enum OperationTrue {
Sum,
Avg,
Count,
Min,
Max,
History,
}
Expand description
This is the aggregation operation you want to perform.
Variants§
Trait Implementations§
Source§impl Clone for OperationTrue
impl Clone for OperationTrue
Source§fn clone(&self) -> OperationTrue
fn clone(&self) -> OperationTrue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OperationTrue
impl Debug for OperationTrue
Source§impl Default for OperationTrue
impl Default for OperationTrue
Source§fn default() -> OperationTrue
fn default() -> OperationTrue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationTrue
impl<'de> Deserialize<'de> for OperationTrue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for OperationTrue
impl Hash for OperationTrue
Source§impl Ord for OperationTrue
impl Ord for OperationTrue
Source§fn cmp(&self, other: &OperationTrue) -> Ordering
fn cmp(&self, other: &OperationTrue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OperationTrue
impl PartialEq for OperationTrue
Source§impl PartialOrd for OperationTrue
impl PartialOrd for OperationTrue
Source§impl Serialize for OperationTrue
impl Serialize for OperationTrue
impl Copy for OperationTrue
impl Eq for OperationTrue
impl StructuralPartialEq for OperationTrue
Auto Trait Implementations§
impl Freeze for OperationTrue
impl RefUnwindSafe for OperationTrue
impl Send for OperationTrue
impl Sync for OperationTrue
impl Unpin for OperationTrue
impl UnwindSafe for OperationTrue
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