pub struct BaselineMatch {
pub entries: usize,
pub matched: usize,
}Expand description
Baseline match statistics. Shows how many baseline entries existed and how
many matched current issues. Useful for detecting stale baselines
programmatically. Only present in CheckOutput when --baseline is used.
Fields§
§entries: usizeTotal number of entries in the loaded baseline file.
matched: usizeNumber of baseline entries that matched current issues and were filtered.
Trait Implementations§
Source§impl Clone for BaselineMatch
impl Clone for BaselineMatch
impl Copy for BaselineMatch
Source§impl Debug for BaselineMatch
impl Debug for BaselineMatch
Source§impl Default for BaselineMatch
impl Default for BaselineMatch
Auto Trait Implementations§
impl Freeze for BaselineMatch
impl RefUnwindSafe for BaselineMatch
impl Send for BaselineMatch
impl Sync for BaselineMatch
impl Unpin for BaselineMatch
impl UnsafeUnpin for BaselineMatch
impl UnwindSafe for BaselineMatch
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