[][src]Trait bpxe_bpmn_schema::CollaborationType

pub trait CollaborationType: RootElementType + Downcast + Debug + Send + DynClone {
    pub fn name(&self) -> &Option<String>;
pub fn is_closed(&self) -> &Option<bool>;
pub fn participants(&self) -> &Vec<Participant>;
pub fn message_flows(&self) -> &Vec<MessageFlow>;
pub fn artifacts(&self) -> &Vec<Artifact>;
pub fn conversation_nodes(&self) -> &Vec<ConversationNode>;
pub fn conversation_associations(&self) -> &Vec<ConversationAssociation>;
pub fn participant_associations(&self) -> &Vec<ParticipantAssociation>;
pub fn message_flow_associations(&self) -> &Vec<MessageFlowAssociation>;
pub fn correlation_keys(&self) -> &Vec<CorrelationKey>;
pub fn choreography_refs(&self) -> &Vec<String>;
pub fn conversation_links(&self) -> &Vec<ConversationLink>; }

Access to collaboration

Required methods

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

Get value of attribute name

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

Get value of attribute isClosed

pub fn participants(&self) -> &Vec<Participant>[src]

Get value of participant child

pub fn message_flows(&self) -> &Vec<MessageFlow>[src]

Get value of messageFlow child

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

Get value of artifact child

pub fn conversation_nodes(&self) -> &Vec<ConversationNode>[src]

Get value of conversationNode child

pub fn conversation_associations(&self) -> &Vec<ConversationAssociation>[src]

Get value of conversationAssociation child

pub fn participant_associations(&self) -> &Vec<ParticipantAssociation>[src]

Get value of participantAssociation child

pub fn message_flow_associations(&self) -> &Vec<MessageFlowAssociation>[src]

Get value of messageFlowAssociation child

pub fn correlation_keys(&self) -> &Vec<CorrelationKey>[src]

Get value of correlationKey child

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

Get value of choreographyRef child

Get value of conversationLink child

Loading content...

Implementations

impl dyn CollaborationType[src]

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

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

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

impl CollaborationType for Collaboration[src]

impl CollaborationType for GlobalChoreographyTask[src]

impl CollaborationType for GlobalConversation[src]

Loading content...