pub struct BreakpointReport {
pub results: Vec<BreakpointResult>,
}Expand description
Report of verification across all terminal breakpoints.
Fields§
§results: Vec<BreakpointResult>Per-breakpoint results.
Implementations§
Source§impl BreakpointReport
impl BreakpointReport
Sourcepub fn count(&self, outcome: BreakpointOutcome) -> usize
pub fn count(&self, outcome: BreakpointOutcome) -> usize
Count of results by outcome.
Sourcepub fn failures(&self) -> Vec<&BreakpointResult>
pub fn failures(&self) -> Vec<&BreakpointResult>
Get results that failed at required breakpoints.
Sourcepub fn warnings(&self) -> Vec<&BreakpointResult>
pub fn warnings(&self) -> Vec<&BreakpointResult>
Get results that warned at advisory breakpoints.
Trait Implementations§
Source§impl Clone for BreakpointReport
impl Clone for BreakpointReport
Source§fn clone(&self) -> BreakpointReport
fn clone(&self) -> BreakpointReport
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 moreAuto Trait Implementations§
impl Freeze for BreakpointReport
impl RefUnwindSafe for BreakpointReport
impl Send for BreakpointReport
impl Sync for BreakpointReport
impl Unpin for BreakpointReport
impl UnsafeUnpin for BreakpointReport
impl UnwindSafe for BreakpointReport
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