Struct ucglib::build::Builder[][src]

pub struct Builder {
    pub last: Option<Rc<Val>>,
    // some fields omitted
}

Handles building ucg code.

Fields

last is the result of the last statement.

Methods

impl Builder
[src]

Constructs a new Builder.

Constructs a new Builder with a provided scope.

Returns a Val by name from previously built UCG.

Puts the builder in validation mode.

Among other things this means that assertions will be evaluated and their results will be saved in a report for later output.

Builds a list of parsed UCG Statements.

Builds a string of ucg syntax.

Builds a ucg file at the named path.

Auto Trait Implementations

impl !Send for Builder

impl !Sync for Builder