pub struct KnowledgeGraphEdge {
pub memory_id: String,
pub similarity: f32,
pub shared_tags: Vec<String>,
}Expand description
Knowledge graph edge
Fields§
§memory_id: String§similarity: f32Trait Implementations§
Source§impl Debug for KnowledgeGraphEdge
impl Debug for KnowledgeGraphEdge
Auto Trait Implementations§
impl Freeze for KnowledgeGraphEdge
impl RefUnwindSafe for KnowledgeGraphEdge
impl Send for KnowledgeGraphEdge
impl Sync for KnowledgeGraphEdge
impl Unpin for KnowledgeGraphEdge
impl UnsafeUnpin for KnowledgeGraphEdge
impl UnwindSafe for KnowledgeGraphEdge
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