pub struct ExecutionWave {
pub task_ids: Vec<String>,
pub estimated_time_secs: u64,
}Expand description
A wave of parallel task execution.
Fields§
§task_ids: Vec<String>Task IDs in this wave.
estimated_time_secs: u64Estimated execution time for this wave.
Trait Implementations§
Source§impl Clone for ExecutionWave
impl Clone for ExecutionWave
Source§fn clone(&self) -> ExecutionWave
fn clone(&self) -> ExecutionWave
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 ExecutionWave
impl Debug for ExecutionWave
Source§impl<'de> Deserialize<'de> for ExecutionWave
impl<'de> Deserialize<'de> for ExecutionWave
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 ExecutionWave
impl RefUnwindSafe for ExecutionWave
impl Send for ExecutionWave
impl Sync for ExecutionWave
impl Unpin for ExecutionWave
impl UnsafeUnpin for ExecutionWave
impl UnwindSafe for ExecutionWave
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