Struct rtlola_hir::hir::StreamType[][src]

pub struct StreamType {
    pub value_ty: ConcreteValueType,
    pub pacing_ty: ConcretePacingType,
    pub spawn: (ConcretePacingType, Expression),
    pub filter: Expression,
    pub close: Expression,
}
Expand description

The external definition of the stream type.

Fields

value_ty: ConcreteValueType

The ConcreteValueType of the stream and his expression, e.g. Bool.

pacing_ty: ConcretePacingType

The ConcretePacingType of the stream, e.g. 5Hz.

spawn: (ConcretePacingType, Expression)

The spawn type of the stream. Given by the composition of the spawn expression and the pacing of the spawn expression.

filter: Expression

The filter type given by the filter expression. The stream only has to be evaluated if this boolean expression evaluates to true.

close: Expression

The close type given by the close expression. The stream can be closed and does not have to be evaluated if this boolean expression returns true.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.