pub enum ParallelStep {
Uses(UsesStep),
Run(RunStep),
}Expand description
The subset of steps that are valid within a parallel: block.
Variants§
Trait Implementations§
Source§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 UnsafeUnpin 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