pub struct ContradictionStoreResult {
pub fact_id: String,
pub actions: Vec<ResolutionAction>,
pub decision_log_entries: Vec<DecisionLogEntry>,
}Expand description
Result of a contradiction-checked store operation.
Fields§
§fact_id: StringThe fact ID that was stored (or would be stored).
actions: Vec<ResolutionAction>Resolution actions taken (supersede, skip, tie). Empty if no contradictions.
decision_log_entries: Vec<DecisionLogEntry>Decision log entries generated for audit trail. Empty if no contradictions.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ContradictionStoreResult
impl RefUnwindSafe for ContradictionStoreResult
impl Send for ContradictionStoreResult
impl Sync for ContradictionStoreResult
impl Unpin for ContradictionStoreResult
impl UnsafeUnpin for ContradictionStoreResult
impl UnwindSafe for ContradictionStoreResult
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