pub struct BaselineDeltas {
pub total_delta: i64,
pub per_category: Vec<(String, CategoryDelta)>,
}Expand description
Deltas between current analysis results and a saved baseline.
Used in combined mode to show +/- counts in the failure summary and
to emit baseline_deltas in JSON output.
Fields§
§total_delta: i64Net change in total issue count (positive = more issues).
per_category: Vec<(String, CategoryDelta)>Per-category deltas keyed by category name.
Trait Implementations§
Source§impl Clone for BaselineDeltas
impl Clone for BaselineDeltas
Auto Trait Implementations§
impl Freeze for BaselineDeltas
impl RefUnwindSafe for BaselineDeltas
impl Send for BaselineDeltas
impl Sync for BaselineDeltas
impl Unpin for BaselineDeltas
impl UnsafeUnpin for BaselineDeltas
impl UnwindSafe for BaselineDeltas
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more