Enum rtlola_parser::ast::WindowOperation[][src]

pub enum WindowOperation {
    Count,
    Min,
    Max,
    Sum,
    Product,
    Average,
    Integral,
    Conjunction,
    Disjunction,
}

The Ast representation of the different aggregation functions

Variants

Count

Aggregation function to count the number of updated values on the accessed stream

Min

Aggregation function to return the minimum

Max

Aggregation function to return the minimum

Sum

Aggregation function to return the addition

Product

Aggregation function to return the product

Average

Aggregation function to return the average

Integral

Aggregation function to return the integral

Conjunction

Aggregation function to return the conjunction, i.e., the sliding window returns true iff ALL values on the accessed stream inside a window are assigned to true

Disjunction

Aggregation function to return the disjunction, i.e., the sliding window returns true iff AT LEAst ONE value on the accessed stream inside a window is assigned to true

Trait Implementations

impl Clone for WindowOperation[src]

impl Copy for WindowOperation[src]

impl Debug for WindowOperation[src]

impl Display for WindowOperation[src]

impl Eq for WindowOperation[src]

impl PartialEq<WindowOperation> for WindowOperation[src]

impl StructuralEq for WindowOperation[src]

impl StructuralPartialEq for WindowOperation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.