[][src]Trait bpxe_bpmn_schema::FlowElementType

pub trait FlowElementType: BaseElementType + Downcast + Debug + Send + DynClone {
    pub fn name(&self) -> &Option<String>;
pub fn auditing(&self) -> &Option<Auditing>;
pub fn monitoring(&self) -> &Option<Monitoring>;
pub fn category_value_refs(&self) -> &Vec<String>; }

Access to flowElement

Required methods

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

Get value of attribute name

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 category_value_refs(&self) -> &Vec<String>[src]

Get value of categoryValueRef child

Loading content...

Implementations

impl dyn FlowElementType[src]

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

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

pub fn downcast<__T: FlowElementType>(
    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: FlowElementType>(
    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: FlowElementType>(&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: FlowElementType>(&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 FlowElementType for AdHocSubProcess[src]

impl FlowElementType for BoundaryEvent[src]

impl FlowElementType for BusinessRuleTask[src]

impl FlowElementType for CallActivity[src]

impl FlowElementType for CallChoreography[src]

impl FlowElementType for ChoreographyTask[src]

impl FlowElementType for ComplexGateway[src]

impl FlowElementType for DataObject[src]

impl FlowElementType for DataObjectReference[src]

impl FlowElementType for DataStoreReference[src]

impl FlowElementType for EndEvent[src]

impl FlowElementType for EventBasedGateway[src]

impl FlowElementType for ExclusiveGateway[src]

impl FlowElementType for Gateway[src]

impl FlowElementType for ImplicitThrowEvent[src]

impl FlowElementType for InclusiveGateway[src]

impl FlowElementType for IntermediateCatchEvent[src]

impl FlowElementType for IntermediateThrowEvent[src]

impl FlowElementType for ManualTask[src]

impl FlowElementType for ParallelGateway[src]

impl FlowElementType for ReceiveTask[src]

impl FlowElementType for ScriptTask[src]

impl FlowElementType for SendTask[src]

impl FlowElementType for SequenceFlow[src]

impl FlowElementType for ServiceTask[src]

impl FlowElementType for StartEvent[src]

impl FlowElementType for SubChoreography[src]

impl FlowElementType for SubProcess[src]

impl FlowElementType for Task[src]

impl FlowElementType for Transaction[src]

impl FlowElementType for UserTask[src]

Loading content...