[][src]Trait bpxe_bpmn_schema::ChoreographyActivityTypeMut

pub trait ChoreographyActivityTypeMut: FlowNodeTypeMut + Downcast + Debug + Send + DynClone + ChoreographyActivityType {
    pub fn set_initiating_participant_ref(&mut self, value: String);
pub fn set_loop_type(&mut self, value: Option<String>);
pub fn participant_refs_mut(&mut self) -> &mut Vec<String>;
pub fn set_participant_refs(&mut self, value: Vec<String>);
pub fn correlation_keys_mut(&mut self) -> &mut Vec<CorrelationKey>;
pub fn set_correlation_keys(&mut self, value: Vec<CorrelationKey>); }

Mutable access to choreographyActivity

Required methods

pub fn set_initiating_participant_ref(&mut self, value: String)[src]

Set value of attribute initiatingParticipantRef

pub fn set_loop_type(&mut self, value: Option<String>)[src]

Set value of attribute loopType

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

Get a mutable value of participantRef child

pub fn set_participant_refs(&mut self, value: Vec<String>)[src]

Set value of participantRef child

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

Get a mutable value of correlationKey child

pub fn set_correlation_keys(&mut self, value: Vec<CorrelationKey>)[src]

Set value of correlationKey child

Loading content...

Implementations

impl dyn ChoreographyActivityTypeMut[src]

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

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

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

impl ChoreographyActivityTypeMut for ChoreographyTask[src]

impl ChoreographyActivityTypeMut for SubChoreography[src]

Loading content...