Trait dmntk_model::model::Invocable[][src]

pub trait Invocable: DmnElement + NamedElement {
    fn variable(&self) -> &InformationItem;
}
Expand description

Invocable is used to model the inputs of a decision whose values are defined outside of the decision model.

Required methods

fn variable(&self) -> &InformationItem[src]

Returns reference to a variable that is bound to the function defined by the FunctionDefinition, allowing decision logic to invoke the function by name.

Implementors

impl Invocable for BusinessKnowledgeModel[src]

fn variable(&self) -> &InformationItem[src]

Returns reference to a variable for this BusinessKnowledgeModel.

impl Invocable for DecisionService[src]

fn variable(&self) -> &InformationItem[src]

Returns reference to a variable for this DecisionService.