pub enum BatchMode {
Sequential,
Parallel,
}Expand description
Execution mode for a batch when no explicit dependencies decide the order.
Variants§
Sequential
Run actions one after another in spec order (each action implicitly depends on the previous one).
Parallel
Start all actions concurrently; only explicit dependsOn edges order
them.
Trait Implementations§
impl Copy for BatchMode
Source§impl<'de> Deserialize<'de> for BatchMode
impl<'de> Deserialize<'de> for BatchMode
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
impl Eq for BatchMode
impl StructuralPartialEq for BatchMode
Auto Trait Implementations§
impl Freeze for BatchMode
impl RefUnwindSafe for BatchMode
impl Send for BatchMode
impl Sync for BatchMode
impl Unpin for BatchMode
impl UnsafeUnpin for BatchMode
impl UnwindSafe for BatchMode
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