Struct rtlola_frontend::mir::InputStream[][src]

pub struct InputStream {
    pub name: String,
    pub ty: Type,
    pub accessed_by: Vec<StreamReference>,
    pub aggregated_by: Vec<(StreamReference, WindowReference)>,
    pub layer: StreamLayers,
    pub memory_bound: MemorizationBound,
    pub reference: StreamReference,
}

Contains all information inherent to an input stream.

Fields

name: String

The name of the stream

ty: Type

The value type of the stream. Note that its pacing is always pre-determined.

accessed_by: Vec<StreamReference>

The collection of streams that access the current stream non-transitively

aggregated_by: Vec<(StreamReference, WindowReference)>

The collection of sliding windows that access this stream non-transitively. This includes both sliding and discrete windows.

layer: StreamLayers

Provides the evaluation of layer of this stream.

memory_bound: MemorizationBound

Provides the number of values of this stream’s type that need to be memorized. Refer to Type::size to get a type’s byte-size.

reference: StreamReference

The reference referring to this stream

Trait Implementations

impl Clone for InputStream[src]

impl Debug for InputStream[src]

impl Eq for InputStream[src]

impl PartialEq<InputStream> for InputStream[src]

impl Stream for InputStream[src]

impl StructuralEq for InputStream[src]

impl StructuralPartialEq for InputStream[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.