pub struct ReviewReconsiderCtx<'a> {
pub instruction: &'a str,
pub reviewer: usize,
pub lens: Lens,
pub panel: &'a [ReviewSeatReport<'a>],
pub patch: Option<ReviewPatch<'a>>,
pub rounds: usize,
pub round: usize,
pub language: &'a str,
}Expand description
Everything a reviewer needs to reconsider its vote after a split round.
Fields§
§instruction: &'a strThe original task.
reviewer: usizeThis seat’s own number, 1-based.
lens: LensThis seat’s lens, restated so the revote stays anchored to it.
panel: &'a [ReviewSeatReport<'a>]Every seat that cast an initial vote, in seat order, including this one.
patch: Option<ReviewPatch<'a>>The patch, restated for a seat with no session to remember it from.
None when the seat’s own conversation still holds the initial
review’s prompt — the same distinction crate::graph’s
has_context draws for a judge’s deliberation turn or final vote.
Without this, a stateless seat would revote on the panel’s claims
alone, with nothing of its own to check them against.
rounds: usizeRound budget.
round: usize1-based round number.
language: &'a strLanguage for prose.
Trait Implementations§
Source§impl<'a> Clone for ReviewReconsiderCtx<'a>
impl<'a> Clone for ReviewReconsiderCtx<'a>
Source§fn clone(&self) -> ReviewReconsiderCtx<'a>
fn clone(&self) -> ReviewReconsiderCtx<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for ReviewReconsiderCtx<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReviewReconsiderCtx<'a>
impl<'a> RefUnwindSafe for ReviewReconsiderCtx<'a>
impl<'a> Send for ReviewReconsiderCtx<'a>
impl<'a> Sync for ReviewReconsiderCtx<'a>
impl<'a> Unpin for ReviewReconsiderCtx<'a>
impl<'a> UnsafeUnpin for ReviewReconsiderCtx<'a>
impl<'a> UnwindSafe for ReviewReconsiderCtx<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more