pub struct LinkGraph {
pub edges: Vec<LinkEdge>,
}Expand description
Directed link graph across all pages in a knowledge base.
Fields§
§edges: Vec<LinkEdge>Deduplicated directed edges (self-links excluded).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LinkGraph
impl RefUnwindSafe for LinkGraph
impl Send for LinkGraph
impl Sync for LinkGraph
impl Unpin for LinkGraph
impl UnsafeUnpin for LinkGraph
impl UnwindSafe for LinkGraph
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