pub struct MatchAudit {
pub operations: Vec<MatchOperation>,
pub rejected: Vec<RejectedCandidate>,
}Expand description
Result of the auditable match planning pass: accepted operations plus rejected candidates.
Fields§
§operations: Vec<MatchOperation>Operations that satisfied the confidence threshold and resolved to real files.
rejected: Vec<RejectedCandidate>Candidates rejected by the planner.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MatchAudit
impl RefUnwindSafe for MatchAudit
impl Send for MatchAudit
impl Sync for MatchAudit
impl Unpin for MatchAudit
impl UnsafeUnpin for MatchAudit
impl UnwindSafe for MatchAudit
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