Struct ElemBatch
pub struct ElemBatch { /* private fields */ }Expand description
The batch structure.
Implementations§
§impl ElemBatch
The batch implementation.
impl ElemBatch
The batch implementation.
pub fn new(
name_param: &str,
group_param: &str,
locale_param: &str,
enabled_param: bool,
actions_param: Vec<ElemBatchAction>,
inputs_param: Vec<ElemBatchIO>,
outputs_param: Vec<ElemBatchIO>,
) -> ElemBatch
pub fn new( name_param: &str, group_param: &str, locale_param: &str, enabled_param: bool, actions_param: Vec<ElemBatchAction>, inputs_param: Vec<ElemBatchIO>, outputs_param: Vec<ElemBatchIO>, ) -> ElemBatch
Create a new object.
§Arguments
name_param- Name of the batch.group_param- Optional group of the batch.locale_param- User locale of the batch.enabled_param- Enabled for execution.actions_param- Actions of the batch.inputs_param- Inputs of the batch.outputs_param- Outputs of the batch.
§Return
- See description.
pub fn actions(&self) -> &Vec<ElemBatchAction>
pub fn actions(&self) -> &Vec<ElemBatchAction>
pub fn inputs(&self) -> &Vec<ElemBatchIO>
pub fn inputs(&self) -> &Vec<ElemBatchIO>
pub fn outputs(&self) -> &Vec<ElemBatchIO>
pub fn outputs(&self) -> &Vec<ElemBatchIO>
Auto Trait Implementations§
impl Freeze for ElemBatch
impl RefUnwindSafe for ElemBatch
impl Send for ElemBatch
impl Sync for ElemBatch
impl Unpin for ElemBatch
impl UnwindSafe for ElemBatch
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more