pub struct ContradictedNode {
pub node_id: u64,
pub contradiction_strength: f32,
pub reason: String,
}Expand description
A node that contradicts the hypothesis.
Fields§
§node_id: u64The node ID of the contradicting node.
contradiction_strength: f32How strongly it contradicts (higher = stronger).
reason: StringWhy it was flagged (e.g., negation detected, explicit Contradicts edge).
Trait Implementations§
Source§impl Clone for ContradictedNode
impl Clone for ContradictedNode
Source§fn clone(&self) -> ContradictedNode
fn clone(&self) -> ContradictedNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ContradictedNode
impl RefUnwindSafe for ContradictedNode
impl Send for ContradictedNode
impl Sync for ContradictedNode
impl Unpin for ContradictedNode
impl UnsafeUnpin for ContradictedNode
impl UnwindSafe for ContradictedNode
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