pub enum PairRole {
Implementer,
Reviewer,
}Expand description
A role inside the two-agent pair review loop. Roster, solo, and manual strategies never assign these roles.
Variants§
Implementer
The agent producing the change that the pair reviewer will inspect.
Reviewer
The agent inspecting an implementer’s handoff for concrete defects.
Implementations§
Trait Implementations§
impl Copy for PairRole
impl Eq for PairRole
impl StructuralPartialEq for PairRole
Auto Trait Implementations§
impl Freeze for PairRole
impl RefUnwindSafe for PairRole
impl Send for PairRole
impl Sync for PairRole
impl Unpin for PairRole
impl UnsafeUnpin for PairRole
impl UnwindSafe for PairRole
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