pub struct Gap {
pub node_id: u64,
pub gap_type: GapType,
pub severity: f32,
pub description: String,
pub downstream_count: usize,
}Expand description
A single detected gap in the knowledge graph.
Fields§
§node_id: u64The node ID that has a gap.
gap_type: GapTypeThe type of gap.
severity: f32Severity score (0.0 = minor, 1.0 = critical).
description: StringHuman-readable description of the gap.
downstream_count: usizeNumber of downstream nodes affected by this gap.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Gap
impl RefUnwindSafe for Gap
impl Send for Gap
impl Sync for Gap
impl Unpin for Gap
impl UnsafeUnpin for Gap
impl UnwindSafe for Gap
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