[][src]Trait bpxe_bpmn_schema::ProcessTypeMut

pub trait ProcessTypeMut: CallableElementTypeMut + Downcast + Debug + Send + DynClone + ProcessType {
    pub fn set_process_type(&mut self, value: Option<String>);
pub fn set_is_closed(&mut self, value: Option<bool>);
pub fn set_is_executable(&mut self, value: Option<bool>);
pub fn set_definitional_collaboration_ref(&mut self, value: Option<String>);
pub fn auditing_mut(&mut self) -> &mut Option<Auditing>;
pub fn set_auditing(&mut self, value: Option<Auditing>);
pub fn monitoring_mut(&mut self) -> &mut Option<Monitoring>;
pub fn set_monitoring(&mut self, value: Option<Monitoring>);
pub fn properies_mut(&mut self) -> &mut Vec<Property>;
pub fn set_properies(&mut self, value: Vec<Property>);
pub fn lane_sets_mut(&mut self) -> &mut Vec<LaneSet>;
pub fn set_lane_sets(&mut self, value: Vec<LaneSet>);
pub fn flow_elements_mut(&mut self) -> &mut Vec<FlowElement>;
pub fn set_flow_elements(&mut self, value: Vec<FlowElement>);
pub fn artifacts_mut(&mut self) -> &mut Vec<Artifact>;
pub fn set_artifacts(&mut self, value: Vec<Artifact>);
pub fn resource_roles_mut(&mut self) -> &mut Vec<ResourceRole>;
pub fn set_resource_roles(&mut self, value: Vec<ResourceRole>);
pub fn correlation_subscriptions_mut(
        &mut self
    ) -> &mut Vec<CorrelationSubscription>;
pub fn set_correlation_subscriptions(
        &mut self,
        value: Vec<CorrelationSubscription>
    );
pub fn supportss_mut(&mut self) -> &mut Vec<String>;
pub fn set_supportss(&mut self, value: Vec<String>); }

Mutable access to process

Required methods

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

Set value of attribute processType

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

Set value of attribute isClosed

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

Set value of attribute isExecutable

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

Set value of attribute definitionalCollaborationRef

pub fn auditing_mut(&mut self) -> &mut Option<Auditing>[src]

Get a mutable value of auditing child

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

Set value of auditing child

pub fn monitoring_mut(&mut self) -> &mut Option<Monitoring>[src]

Get a mutable value of monitoring child

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

Set value of monitoring child

pub fn properies_mut(&mut self) -> &mut Vec<Property>[src]

Get a mutable value of property child

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

Set value of property child

pub fn lane_sets_mut(&mut self) -> &mut Vec<LaneSet>[src]

Get a mutable value of laneSet child

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

Set value of laneSet child

pub fn flow_elements_mut(&mut self) -> &mut Vec<FlowElement>[src]

Get a mutable value of flowElement child

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

Set value of flowElement child

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

Get a mutable value of artifact child

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

Set value of artifact child

pub fn resource_roles_mut(&mut self) -> &mut Vec<ResourceRole>[src]

Get a mutable value of resourceRole child

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

Set value of resourceRole child

pub fn correlation_subscriptions_mut(
    &mut self
) -> &mut Vec<CorrelationSubscription>
[src]

Get a mutable value of correlationSubscription child

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

Set value of correlationSubscription child

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

Get a mutable value of supports child

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

Set value of supports child

Loading content...

Implementations

impl dyn ProcessTypeMut[src]

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

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

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

Loading content...