pub struct ParallelSchedule {
pub waves: Vec<ExecutionWave>,
pub estimated_time_secs: u64,
pub max_parallelism: usize,
}Expand description
Parallel execution schedule.
Fields§
§waves: Vec<ExecutionWave>Execution waves - each wave contains tasks that can run in parallel.
estimated_time_secs: u64Total estimated execution time in seconds.
max_parallelism: usizeMaximum parallelism (max tasks running at once).
Trait Implementations§
Source§impl Clone for ParallelSchedule
impl Clone for ParallelSchedule
Source§fn clone(&self) -> ParallelSchedule
fn clone(&self) -> ParallelSchedule
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 ParallelSchedule
impl Debug for ParallelSchedule
Source§impl<'de> Deserialize<'de> for ParallelSchedule
impl<'de> Deserialize<'de> for ParallelSchedule
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 ParallelSchedule
impl RefUnwindSafe for ParallelSchedule
impl Send for ParallelSchedule
impl Sync for ParallelSchedule
impl Unpin for ParallelSchedule
impl UnsafeUnpin for ParallelSchedule
impl UnwindSafe for ParallelSchedule
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