pub struct GateCounts {
pub total: usize,
pub blocking: usize,
pub passed: usize,
pub failed: usize,
pub unevaluable: usize,
}Expand description
Tallies from one stage evaluation.
Fields§
§total: usizeGates in the stage.
blocking: usizeOf those, how many are blocking.
passed: usizeGates that passed.
failed: usizeGates that were checked and failed.
unevaluable: usizeGates that could not be checked.
Trait Implementations§
Source§impl Clone for GateCounts
impl Clone for GateCounts
Source§fn clone(&self) -> GateCounts
fn clone(&self) -> GateCounts
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 Copy for GateCounts
Source§impl Debug for GateCounts
impl Debug for GateCounts
Source§impl Default for GateCounts
impl Default for GateCounts
Source§fn default() -> GateCounts
fn default() -> GateCounts
Returns the “default value” for a type. Read more
impl Eq for GateCounts
Source§impl PartialEq for GateCounts
impl PartialEq for GateCounts
impl StructuralPartialEq for GateCounts
Auto Trait Implementations§
impl Freeze for GateCounts
impl RefUnwindSafe for GateCounts
impl Send for GateCounts
impl Sync for GateCounts
impl Unpin for GateCounts
impl UnsafeUnpin for GateCounts
impl UnwindSafe for GateCounts
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