pub enum DiagnosticAggregateKind {
Count,
Sum,
Avg,
Exists,
Min,
Max,
First,
Last,
}Expand description
Compact aggregate identity carried by DiagnosticFactTag::AggregateKind.
Variants§
Count
Compact diagnostic value 1.
Sum
Compact diagnostic value 2.
Avg
Compact diagnostic value 3.
Exists
Compact diagnostic value 4.
Min
Compact diagnostic value 5.
Max
Compact diagnostic value 6.
First
Compact diagnostic value 7.
Last
Compact diagnostic value 8.
Implementations§
Trait Implementations§
Source§impl Clone for DiagnosticAggregateKind
impl Clone for DiagnosticAggregateKind
Source§fn clone(&self) -> DiagnosticAggregateKind
fn clone(&self) -> DiagnosticAggregateKind
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 DiagnosticAggregateKind
Source§impl Debug for DiagnosticAggregateKind
impl Debug for DiagnosticAggregateKind
impl Eq for DiagnosticAggregateKind
Source§impl Hash for DiagnosticAggregateKind
impl Hash for DiagnosticAggregateKind
Source§impl PartialEq for DiagnosticAggregateKind
impl PartialEq for DiagnosticAggregateKind
impl StructuralPartialEq for DiagnosticAggregateKind
Auto Trait Implementations§
impl Freeze for DiagnosticAggregateKind
impl RefUnwindSafe for DiagnosticAggregateKind
impl Send for DiagnosticAggregateKind
impl Sync for DiagnosticAggregateKind
impl Unpin for DiagnosticAggregateKind
impl UnsafeUnpin for DiagnosticAggregateKind
impl UnwindSafe for DiagnosticAggregateKind
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