pub struct GraphPath {
pub node_ids: Vec<String>,
pub edges: Vec<MemoryEdge>,
}Expand description
Internal shortest-path result.
Fields§
§node_ids: Vec<String>§edges: Vec<MemoryEdge>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphPath
impl RefUnwindSafe for GraphPath
impl Send for GraphPath
impl Sync for GraphPath
impl Unpin for GraphPath
impl UnsafeUnpin for GraphPath
impl UnwindSafe for GraphPath
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