[][src]Trait bpxe_bpmn_schema::CatchEventTypeMut

pub trait CatchEventTypeMut: EventTypeMut + Downcast + Debug + Send + DynClone + CatchEventType {
    pub fn set_parallel_multiple(&mut self, value: Option<bool>);
pub fn data_outputs_mut(&mut self) -> &mut Vec<DataOutput>;
pub fn set_data_outputs(&mut self, value: Vec<DataOutput>);
pub fn data_output_associations_mut(
        &mut self
    ) -> &mut Vec<DataOutputAssociation>;
pub fn set_data_output_associations(
        &mut self,
        value: Vec<DataOutputAssociation>
    );
pub fn output_set_mut(&mut self) -> &mut Option<OutputSet>;
pub fn set_output_set(&mut self, value: Option<OutputSet>);
pub fn event_definitions_mut(&mut self) -> &mut Vec<EventDefinition>;
pub fn set_event_definitions(&mut self, value: Vec<EventDefinition>);
pub fn event_definition_refs_mut(&mut self) -> &mut Vec<String>;
pub fn set_event_definition_refs(&mut self, value: Vec<String>); }

Mutable access to catchEvent

Required methods

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

Set value of attribute parallelMultiple

pub fn data_outputs_mut(&mut self) -> &mut Vec<DataOutput>[src]

Get a mutable value of dataOutput child

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

Set value of dataOutput child

pub fn data_output_associations_mut(
    &mut self
) -> &mut Vec<DataOutputAssociation>
[src]

Get a mutable value of dataOutputAssociation child

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

Set value of dataOutputAssociation child

pub fn output_set_mut(&mut self) -> &mut Option<OutputSet>[src]

Get a mutable value of outputSet child

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

Set value of outputSet child

pub fn event_definitions_mut(&mut self) -> &mut Vec<EventDefinition>[src]

Get a mutable value of eventDefinition child

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

Set value of eventDefinition child

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

Get a mutable value of eventDefinitionRef child

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

Set value of eventDefinitionRef child

Loading content...

Implementations

impl dyn CatchEventTypeMut[src]

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

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

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

impl CatchEventTypeMut for IntermediateCatchEvent[src]

impl CatchEventTypeMut for StartEvent[src]

Loading content...