pub struct StageReport {
pub stage_id: String,
pub description: String,
pub outcome: ReportOutcome,
}Expand description
Verification report for a single stage.
Fields§
§stage_id: String§description: String§outcome: ReportOutcomeImplementations§
Trait Implementations§
Source§impl Clone for StageReport
impl Clone for StageReport
Source§fn clone(&self) -> StageReport
fn clone(&self) -> StageReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StageReport
impl RefUnwindSafe for StageReport
impl Send for StageReport
impl Sync for StageReport
impl Unpin for StageReport
impl UnsafeUnpin for StageReport
impl UnwindSafe for StageReport
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