[][src]Trait bpxe_bpmn_schema::LaneTypeMut

pub trait LaneTypeMut: BaseElementTypeMut + Downcast + Debug + Send + DynClone + LaneType {
    pub fn set_name(&mut self, value: Option<String>);
pub fn set_partition_element_ref(&mut self, value: Option<String>);
pub fn partition_element_mut(&mut self) -> &mut Option<BaseElement>;
pub fn set_partition_element(&mut self, value: Option<BaseElement>);
pub fn flow_node_refs_mut(&mut self) -> &mut Vec<String>;
pub fn set_flow_node_refs(&mut self, value: Vec<String>);
pub fn child_lane_set_mut(&mut self) -> &mut Option<LaneSet>;
pub fn set_child_lane_set(&mut self, value: Option<LaneSet>); }

Mutable access to lane

Required methods

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

Set value of attribute name

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

Set value of attribute partitionElementRef

pub fn partition_element_mut(&mut self) -> &mut Option<BaseElement>[src]

Get a mutable value of partitionElement child

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

Set value of partitionElement child

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

Get a mutable value of flowNodeRef child

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

Set value of flowNodeRef child

pub fn child_lane_set_mut(&mut self) -> &mut Option<LaneSet>[src]

Get a mutable value of childLaneSet child

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

Set value of childLaneSet child

Loading content...

Implementations

impl dyn LaneTypeMut[src]

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

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

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

Loading content...