pub enum RunOutcome {
NoCandidates,
Blocked {
summary: QueueRunnabilitySummary,
},
Ran {
task_id: String,
},
}Expand description
Outcome of a single task run.
Variants§
NoCandidates
No Todo (and no Draft if include_draft is false).
Blocked
Candidates exist, but none are currently runnable (deps/schedule/status flags).
Fields
§
summary: QueueRunnabilitySummaryRan
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunOutcome
impl RefUnwindSafe for RunOutcome
impl Send for RunOutcome
impl Sync for RunOutcome
impl Unpin for RunOutcome
impl UnsafeUnpin for RunOutcome
impl UnwindSafe for RunOutcome
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