pub struct StageReport {
pub stage: String,
pub counts: GateCounts,
pub verdict: Verdict,
pub gates: Vec<Gate>,
}Expand description
The outcome of evaluating a Stage.
Fields§
§stage: StringName of the stage.
counts: GateCountsTallies.
verdict: VerdictProceed, or the first gate that halted the run.
gates: Vec<Gate>Every gate as evaluated, in declaration order.
Implementations§
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 (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 StageReport
impl Debug for StageReport
impl Eq for StageReport
Source§impl PartialEq for StageReport
impl PartialEq for StageReport
impl StructuralPartialEq for StageReport
Auto 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