pub enum AggType {
Count,
Current,
First,
Inc,
Max,
Mean,
Min,
Sum,
}
Expand description
Тип аггрегации
Variants§
Count
Количество
Current
Текущее значение, к которому не применялась аггрегация
First
Первое
Inc
Инкремент
Max
Максимум
Mean
Среднее
Min
Минимум
Sum
Сумма
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AggType
impl RefUnwindSafe for AggType
impl Send for AggType
impl Sync for AggType
impl Unpin for AggType
impl UnwindSafe for AggType
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