pub struct FullGraphEdge {
pub source: String,
pub target: String,
pub similarity: f32,
pub shared_tags: Vec<String>,
}Expand description
An edge in the full knowledge graph
Fields§
§source: String§target: String§similarity: f32Trait Implementations§
Source§impl Debug for FullGraphEdge
impl Debug for FullGraphEdge
Auto Trait Implementations§
impl Freeze for FullGraphEdge
impl RefUnwindSafe for FullGraphEdge
impl Send for FullGraphEdge
impl Sync for FullGraphEdge
impl Unpin for FullGraphEdge
impl UnsafeUnpin for FullGraphEdge
impl UnwindSafe for FullGraphEdge
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