logo
pub trait SystemContainer: GraphNode<Label = SystemLabelId> {
    fn run_criteria_label(&self) -> Option<&RunCriteriaLabelId>;
    fn ambiguity_sets(&self) -> &[AmbiguitySetLabelId];
    fn component_access(&self) -> Option<&Access<ComponentId>>;
}
Expand description

System metadata like its name, labels, order requirements and component access.

Required Methods

Implementors