pub struct ParallelStep {
pub steps: Vec<String>,
pub max_concurrency: usize,
}Expand description
Parallel execution step
Fields§
§steps: Vec<String>Steps to execute in parallel
max_concurrency: usizeMaximum concurrent executions
Trait Implementations§
Source§impl Clone for ParallelStep
impl Clone for ParallelStep
Source§fn clone(&self) -> ParallelStep
fn clone(&self) -> ParallelStep
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParallelStep
impl Debug for ParallelStep
Source§impl<'de> Deserialize<'de> for ParallelStep
impl<'de> Deserialize<'de> for ParallelStep
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ParallelStep
impl RefUnwindSafe for ParallelStep
impl Send for ParallelStep
impl Sync for ParallelStep
impl Unpin for ParallelStep
impl UnwindSafe for ParallelStep
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