pub struct Judged {
pub finding: Finding,
pub raised_by: String,
pub standing: Standing,
pub counterpoint: Option<String>,
pub defence: Option<String>,
}Expand description
A finding after both reviewers have had their say.
Fields§
§finding: Finding§raised_by: StringWho first raised it.
standing: StandingHow it ended up.
counterpoint: Option<String>The other reviewer’s reasoning, when they had something to say.
defence: Option<String>What the reviewer who raised it said when the objection came back. Kept apart from the objection: running both together behind a single “the other says” turns the most valuable content in the comment into one unreadable sentence.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Judged
impl RefUnwindSafe for Judged
impl Send for Judged
impl Sync for Judged
impl Unpin for Judged
impl UnsafeUnpin for Judged
impl UnwindSafe for Judged
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