pub struct ScheduledCloseTask {
pub task: CloseTask,
pub sequence: u32,
pub depends_on: Vec<CloseTask>,
pub is_mandatory: bool,
pub can_parallelize: bool,
}Expand description
A scheduled close task with sequence and dependencies.
Fields§
§task: CloseTaskThe task to execute.
sequence: u32Sequence number (execution order).
depends_on: Vec<CloseTask>Tasks that must complete before this one.
is_mandatory: boolIs this task mandatory?
can_parallelize: boolCan this task run in parallel with others at same sequence?
Implementations§
Trait Implementations§
Source§impl Clone for ScheduledCloseTask
impl Clone for ScheduledCloseTask
Source§fn clone(&self) -> ScheduledCloseTask
fn clone(&self) -> ScheduledCloseTask
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 moreAuto Trait Implementations§
impl Freeze for ScheduledCloseTask
impl RefUnwindSafe for ScheduledCloseTask
impl Send for ScheduledCloseTask
impl Sync for ScheduledCloseTask
impl Unpin for ScheduledCloseTask
impl UnwindSafe for ScheduledCloseTask
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