Struct rtlola_parser::ast::RtLolaAst[][src]

pub struct RtLolaAst {
    pub imports: Vec<Import>,
    pub constants: Vec<Rc<Constant>>,
    pub inputs: Vec<Rc<Input>>,
    pub outputs: Vec<Rc<Output>>,
    pub trigger: Vec<Rc<Trigger>>,
    pub type_declarations: Vec<TypeDeclaration>,
}
Expand description

The root of a RTLola specification, consisting of stream and trigger declarations. Each declaration contains the id of the Ast node, a span, and declaration-specific components.

Ast Node Kinds

  • Import represents an import statement for a module.
  • Constant represents a constant stream.
  • Input represents an input stream.
  • Output represents an output stream.
  • Trigger represents a trigger declaration.
  • TypeDeclaration captures a user given type declaration.

Related Data Structures

  • A NodeId is a unique identifier given to every node of the RtLolaAst
  • A Span links an Ast node to its code location.

Fields

imports: Vec<Import>

The imports of additional modules

constants: Vec<Rc<Constant>>

The constant stream declarations

inputs: Vec<Rc<Input>>

The input stream declarations

outputs: Vec<Rc<Output>>

The output stream declarations

trigger: Vec<Rc<Trigger>>

The trigger declarations

type_declarations: Vec<TypeDeclaration>

The user-defined type declarations

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

Returns the “default value” for a type. 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

Converts the given value to a String. 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.