[][src]Struct rtlola_frontend::ir::SlidingWindow

pub struct SlidingWindow {
    pub target: StreamReference,
    pub duration: Duration,
    pub wait: bool,
    pub op: WindowOperation,
    pub reference: WindowReference,
    pub ty: Type,
}

Represents an instance of a sliding window.

Fields

target: StreamReference

The stream whose values will be aggregated.

duration: Duration

The duration over which the window aggregates.

wait: bool

Indicates whether or not the first aggregated value will be produced immediately or whether the window waits until duration has passed at least once.

op: WindowOperation

The aggregation operation.

reference: WindowReference

A reference to this sliding window.

ty: Type

The type of value the window produces.

Trait Implementations

impl Clone for SlidingWindow[src]

impl Debug for SlidingWindow[src]

impl Eq for SlidingWindow[src]

impl PartialEq<SlidingWindow> for SlidingWindow[src]

impl StructuralEq for SlidingWindow[src]

impl StructuralPartialEq for SlidingWindow[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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, 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.