pub struct FullGraphNode {
pub id: String,
pub content: String,
pub memory_type: String,
pub importance: f32,
pub tags: Vec<String>,
pub created_at: Option<String>,
pub cluster_id: usize,
pub centrality: f32,
}Expand description
A node in the full knowledge graph
Fields§
§id: String§content: String§memory_type: String§importance: f32§created_at: Option<String>§cluster_id: usize§centrality: f32Trait Implementations§
Source§impl Debug for FullGraphNode
impl Debug for FullGraphNode
Auto Trait Implementations§
impl Freeze for FullGraphNode
impl RefUnwindSafe for FullGraphNode
impl Send for FullGraphNode
impl Sync for FullGraphNode
impl Unpin for FullGraphNode
impl UnsafeUnpin for FullGraphNode
impl UnwindSafe for FullGraphNode
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