[][src]Trait bpxe_bpmn_schema::ProcessType

pub trait ProcessType: CallableElementType + Downcast + Debug + Send + DynClone {
    pub fn process_type(&self) -> &Option<String>;
pub fn is_closed(&self) -> &Option<bool>;
pub fn is_executable(&self) -> &Option<bool>;
pub fn definitional_collaboration_ref(&self) -> &Option<String>;
pub fn auditing(&self) -> &Option<Auditing>;
pub fn monitoring(&self) -> &Option<Monitoring>;
pub fn properies(&self) -> &Vec<Property>;
pub fn lane_sets(&self) -> &Vec<LaneSet>;
pub fn flow_elements(&self) -> &Vec<FlowElement>;
pub fn artifacts(&self) -> &Vec<Artifact>;
pub fn resource_roles(&self) -> &Vec<ResourceRole>;
pub fn correlation_subscriptions(&self) -> &Vec<CorrelationSubscription>;
pub fn supportss(&self) -> &Vec<String>; }

Access to process

Required methods

pub fn process_type(&self) -> &Option<String>[src]

Get value of attribute processType

pub fn is_closed(&self) -> &Option<bool>[src]

Get value of attribute isClosed

pub fn is_executable(&self) -> &Option<bool>[src]

Get value of attribute isExecutable

pub fn definitional_collaboration_ref(&self) -> &Option<String>[src]

Get value of attribute definitionalCollaborationRef

pub fn auditing(&self) -> &Option<Auditing>[src]

Get value of auditing child

pub fn monitoring(&self) -> &Option<Monitoring>[src]

Get value of monitoring child

pub fn properies(&self) -> &Vec<Property>[src]

Get value of property child

pub fn lane_sets(&self) -> &Vec<LaneSet>[src]

Get value of laneSet child

pub fn flow_elements(&self) -> &Vec<FlowElement>[src]

Get value of flowElement child

pub fn artifacts(&self) -> &Vec<Artifact>[src]

Get value of artifact child

pub fn resource_roles(&self) -> &Vec<ResourceRole>[src]

Get value of resourceRole child

pub fn correlation_subscriptions(&self) -> &Vec<CorrelationSubscription>[src]

Get value of correlationSubscription child

pub fn supportss(&self) -> &Vec<String>[src]

Get value of supports child

Loading content...

Implementations

impl dyn ProcessType[src]

pub fn is<__T: ProcessType>(&self) -> bool[src]

Returns true if the trait object wraps an object of type __T.

pub fn downcast<__T: ProcessType>(
    self: Box<Self>
) -> Result<Box<__T>, Box<Self>>
[src]

Returns a boxed object from a boxed trait object if the underlying object is of type __T. Returns the original boxed trait if it isn't.

pub fn downcast_rc<__T: ProcessType>(
    self: Rc<Self>
) -> Result<Rc<__T>, Rc<Self>>
[src]

Returns an Rc-ed object from an Rc-ed trait object if the underlying object is of type __T. Returns the original Rc-ed trait if it isn't.

pub fn downcast_ref<__T: ProcessType>(&self) -> Option<&__T>[src]

Returns a reference to the object within the trait object if it is of type __T, or None if it isn't.

pub fn downcast_mut<__T: ProcessType>(&mut self) -> Option<&mut __T>[src]

Returns a mutable reference to the object within the trait object if it is of type __T, or None if it isn't.

Implementors

impl ProcessType for Process[src]

Loading content...