pub struct KnowledgePath {
pub nodes: Vec<String>,
pub predicates: Vec<String>,
pub hop_count: usize,
pub score: f64,
}Expand description
A path through the knowledge graph represented as an ordered list of nodes and the edges traversed.
Fields§
§nodes: Vec<String>Ordered node sequence (subject → … → object).
predicates: Vec<String>Predicates traversed at each step (length = nodes.len() - 1).
hop_count: usizeNumber of hops.
score: f64Aggregate path score (sum of edge weights).
Implementations§
Trait Implementations§
Source§impl Clone for KnowledgePath
impl Clone for KnowledgePath
Source§fn clone(&self) -> KnowledgePath
fn clone(&self) -> KnowledgePath
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 moreSource§impl Debug for KnowledgePath
impl Debug for KnowledgePath
Source§impl PartialEq for KnowledgePath
impl PartialEq for KnowledgePath
impl StructuralPartialEq for KnowledgePath
Auto Trait Implementations§
impl Freeze for KnowledgePath
impl RefUnwindSafe for KnowledgePath
impl Send for KnowledgePath
impl Sync for KnowledgePath
impl Unpin for KnowledgePath
impl UnsafeUnpin for KnowledgePath
impl UnwindSafe for KnowledgePath
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more