pub struct PanelReportRecord<'a> {
pub stage: &'a str,
pub stage_index: usize,
pub attempt: u32,
pub reviewer_index: usize,
pub verdict: &'a str,
pub confidence: &'a str,
pub reason: &'a str,
}Expand description
One panel reviewer’s report, as the storage takes it. The seat’s key is separate from the report’s content because only the key is authoritative: it comes from the reviewer’s credential.
Fields§
§stage: &'a str§stage_index: usize§attempt: u32§reviewer_index: usize§verdict: &'a str§confidence: &'a str§reason: &'a strTrait Implementations§
Source§impl<'a> Clone for PanelReportRecord<'a>
impl<'a> Clone for PanelReportRecord<'a>
Source§fn clone(&self) -> PanelReportRecord<'a>
fn clone(&self) -> PanelReportRecord<'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 PanelReportRecord<'a>
Auto Trait Implementations§
impl<'a> Freeze for PanelReportRecord<'a>
impl<'a> RefUnwindSafe for PanelReportRecord<'a>
impl<'a> Send for PanelReportRecord<'a>
impl<'a> Sync for PanelReportRecord<'a>
impl<'a> Unpin for PanelReportRecord<'a>
impl<'a> UnsafeUnpin for PanelReportRecord<'a>
impl<'a> UnwindSafe for PanelReportRecord<'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