pub struct SubGraph {
pub nodes: Vec<Node>,
pub edges: Vec<Edge>,
}Expand description
A subgraph centred on a seed node, returned by get_subgraph.
Fields§
§nodes: Vec<Node>§edges: Vec<Edge>Auto Trait Implementations§
impl Freeze for SubGraph
impl RefUnwindSafe for SubGraph
impl Send for SubGraph
impl Sync for SubGraph
impl Unpin for SubGraph
impl UnsafeUnpin for SubGraph
impl UnwindSafe for SubGraph
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