pub struct MatchSummary {
pub total_candidates: usize,
pub accepted: usize,
pub applied: usize,
pub skipped: usize,
pub failed: usize,
}Expand description
Aggregate counters emitted in data.summary.
Fields§
§total_candidates: usizeTotal candidates considered (accepted + rejected).
accepted: usizeCandidates that satisfied the confidence threshold.
applied: usizeOperations that were successfully applied.
skipped: usizeCandidates rejected by the planner (sub-threshold or unresolved IDs).
failed: usizeOperations whose execution failed (per-item status == "error").
Trait Implementations§
Source§impl Debug for MatchSummary
impl Debug for MatchSummary
Auto Trait Implementations§
impl Freeze for MatchSummary
impl RefUnwindSafe for MatchSummary
impl Send for MatchSummary
impl Sync for MatchSummary
impl Unpin for MatchSummary
impl UnsafeUnpin for MatchSummary
impl UnwindSafe for MatchSummary
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