pub enum CompileStep {
Completed(Context),
InProgress(Context),
WaitStage(Context),
}
Variants§
Completed(Context)
The compilation task is completed.
InProgress(Context)
Compilation task is in progress.
WaitStage(Context)
Wait for other tasks to finish the same step.
Auto Trait Implementations§
impl Freeze for CompileStep
impl !RefUnwindSafe for CompileStep
impl Send for CompileStep
impl Sync for CompileStep
impl Unpin for CompileStep
impl !UnwindSafe for CompileStep
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