pub struct Judged {
pub finding: Finding,
pub raised_by: String,
pub standing: Standing,
pub counterpoint: 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.
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