pub struct ReviewerReport {
pub verdict: Verdict,
pub confidence: Option<Confidence>,
pub reason: String,
}Expand description
One reviewer’s report, as the aggregation reads it back from evidence.
Fields§
§verdict: Verdict§confidence: Option<Confidence>Absent only for a reviewer that never reported: it has no confidence to
record. Present reports default to Confidence::Medium.
reason: StringTrait Implementations§
Source§impl Clone for ReviewerReport
impl Clone for ReviewerReport
Source§fn clone(&self) -> ReviewerReport
fn clone(&self) -> ReviewerReport
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 moreSource§impl Debug for ReviewerReport
impl Debug for ReviewerReport
impl Eq for ReviewerReport
Source§impl PartialEq for ReviewerReport
impl PartialEq for ReviewerReport
impl StructuralPartialEq for ReviewerReport
Auto Trait Implementations§
impl Freeze for ReviewerReport
impl RefUnwindSafe for ReviewerReport
impl Send for ReviewerReport
impl Sync for ReviewerReport
impl Unpin for ReviewerReport
impl UnsafeUnpin for ReviewerReport
impl UnwindSafe for ReviewerReport
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.