pub struct SessionDigestGraphEvidence {
pub graph_db: String,
pub scanned: bool,
pub total_nodes: usize,
pub total_edges: usize,
pub symbol_filter: Option<String>,
pub entities: Vec<SessionDigestGraphEntity>,
}Expand description
Knowledge-graph orientation pulled from .tsift/graph.db for the workspace
the session ran in (#kgwiring). This is the active-workflow consumer of the
graph_evidence read seam: every session digest that runs in a workspace
with a populated graph now surfaces the most connected entities (optionally
scoped to the session’s top touched symbol) so planning has KG context
without a separate tsift kg evidence call. scanned: false with a node
total set means the graph exists but exceeded the bounded-scan cap, so only
counts are reported.
Fields§
§graph_db: String§scanned: bool§total_nodes: usize§total_edges: usize§symbol_filter: Option<String>§entities: Vec<SessionDigestGraphEntity>Trait Implementations§
Source§impl Clone for SessionDigestGraphEvidence
impl Clone for SessionDigestGraphEvidence
Source§fn clone(&self) -> SessionDigestGraphEvidence
fn clone(&self) -> SessionDigestGraphEvidence
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SessionDigestGraphEvidence
impl Debug for SessionDigestGraphEvidence
impl Eq for SessionDigestGraphEvidence
Source§impl Serialize for SessionDigestGraphEvidence
impl Serialize for SessionDigestGraphEvidence
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SessionDigestGraphEvidence
Auto Trait Implementations§
impl Freeze for SessionDigestGraphEvidence
impl RefUnwindSafe for SessionDigestGraphEvidence
impl Send for SessionDigestGraphEvidence
impl Sync for SessionDigestGraphEvidence
impl Unpin for SessionDigestGraphEvidence
impl UnsafeUnpin for SessionDigestGraphEvidence
impl UnwindSafe for SessionDigestGraphEvidence
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.