[][src]Trait bpxe_bpmn_schema::FlowNodeType

pub trait FlowNodeType: FlowElementType + Downcast + Debug + Send + DynClone {
    pub fn incomings(&self) -> &Vec<String>;
pub fn outgoings(&self) -> &Vec<String>; }

Access to flowNode

Required methods

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

Get value of incoming child

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

Get value of outgoing child

Loading content...

Implementations

impl dyn FlowNodeType[src]

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

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

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

impl FlowNodeType for BoundaryEvent[src]

impl FlowNodeType for BusinessRuleTask[src]

impl FlowNodeType for CallActivity[src]

impl FlowNodeType for CallChoreography[src]

impl FlowNodeType for ChoreographyTask[src]

impl FlowNodeType for ComplexGateway[src]

impl FlowNodeType for EndEvent[src]

impl FlowNodeType for EventBasedGateway[src]

impl FlowNodeType for ExclusiveGateway[src]

impl FlowNodeType for Gateway[src]

impl FlowNodeType for ImplicitThrowEvent[src]

impl FlowNodeType for InclusiveGateway[src]

impl FlowNodeType for IntermediateCatchEvent[src]

impl FlowNodeType for IntermediateThrowEvent[src]

impl FlowNodeType for ManualTask[src]

impl FlowNodeType for ParallelGateway[src]

impl FlowNodeType for ReceiveTask[src]

impl FlowNodeType for ScriptTask[src]

impl FlowNodeType for SendTask[src]

impl FlowNodeType for ServiceTask[src]

impl FlowNodeType for StartEvent[src]

impl FlowNodeType for SubChoreography[src]

impl FlowNodeType for SubProcess[src]

impl FlowNodeType for Task[src]

impl FlowNodeType for Transaction[src]

impl FlowNodeType for UserTask[src]

Loading content...