pub struct Outcome {
pub issues: Vec<i64>,
pub held: usize,
pub failed: usize,
}Expand description
What was filed, and what was left behind.
Fields§
§issues: Vec<i64>Issues to work, in file order.
held: usizeLeft in the file: not reached, not screened, or could not be filed.
failed: usizeCould not be filed. A non-zero exit even when the pipeline went fine.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Outcome
impl RefUnwindSafe for Outcome
impl Send for Outcome
impl Sync for Outcome
impl Unpin for Outcome
impl UnsafeUnpin for Outcome
impl UnwindSafe for Outcome
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