pub trait BusinessContextElement: NamedElement {
    // Required method
    fn uri(&self) -> &Option<String>;
}
Expand description

The abstract class BusinessContextElement, and its concrete specializations PerformanceIndicator and OrganizationUnit are placeholders, anticipating a definition to be adopted from other OMG meta-models, such as OMG OSM when it is further developed.

Required Methods§

source

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

The URI of this BusinessContextElement.

Implementors§