Expression

Trait Expression 

Source
pub trait Expression {
    // Required method
    fn type_ref(&self) -> &Option<String>;
}
Expand description

Expression is an abstract class that describes the logic by which a modeled decision shall be made, or pieces of that logic.

Required Methods§

Source

fn type_ref(&self) -> &Option<String>

Optional namespace-prefixed name of the base type of this Expression.

Implementors§