pub struct GraphCluster {
pub id: usize,
pub node_count: usize,
pub top_tags: Vec<String>,
pub avg_importance: f32,
}Expand description
A cluster of related memories
Fields§
§id: usize§node_count: usize§avg_importance: f32Trait Implementations§
Source§impl Debug for GraphCluster
impl Debug for GraphCluster
Auto Trait Implementations§
impl Freeze for GraphCluster
impl RefUnwindSafe for GraphCluster
impl Send for GraphCluster
impl Sync for GraphCluster
impl Unpin for GraphCluster
impl UnsafeUnpin for GraphCluster
impl UnwindSafe for GraphCluster
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