pub struct Wave {
pub number: usize,
pub tasks: Vec<String>,
}Expand description
A wave of tasks that can be executed in parallel
Fields§
§number: usizeWave number (1-indexed)
tasks: Vec<String>Task IDs in this wave
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Wave
impl RefUnwindSafe for Wave
impl Send for Wave
impl Sync for Wave
impl Unpin for Wave
impl UnsafeUnpin for Wave
impl UnwindSafe for Wave
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