pub struct TeamRunResult {
pub done_tasks: Vec<TeamTask>,
pub rejected_tasks: Vec<TeamTask>,
pub rounds: usize,
}Expand description
Result returned by TeamRunner::run_until_done.
Fields§
§done_tasks: Vec<TeamTask>Tasks that reached the Done state.
rejected_tasks: Vec<TeamTask>Tasks that are still Rejected after all rounds (could not be approved).
rounds: usizeNumber of reviewer polling rounds completed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TeamRunResult
impl RefUnwindSafe for TeamRunResult
impl Send for TeamRunResult
impl Sync for TeamRunResult
impl Unpin for TeamRunResult
impl UnsafeUnpin for TeamRunResult
impl UnwindSafe for TeamRunResult
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