[][src]Trait bpxe_bpmn_schema::StandardLoopCharacteristicsTypeMut

pub trait StandardLoopCharacteristicsTypeMut: LoopCharacteristicsTypeMut + Downcast + Debug + Send + DynClone + StandardLoopCharacteristicsType {
    pub fn set_test_before(&mut self, value: Option<bool>);
pub fn set_loop_maximum(&mut self, value: Option<Integer>);
pub fn loop_condition_mut(&mut self) -> &mut Option<Expr>;
pub fn set_loop_condition(&mut self, value: Option<Expr>); }

Mutable access to standardLoopCharacteristics

Required methods

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

Set value of attribute testBefore

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

Set value of attribute loopMaximum

pub fn loop_condition_mut(&mut self) -> &mut Option<Expr>[src]

Get a mutable value of loopCondition child

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

Set value of loopCondition child

Loading content...

Implementations

impl dyn StandardLoopCharacteristicsTypeMut[src]

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

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

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

Loading content...