pub struct GraphNeighbor {
pub edge: MemoryEdge,
pub node: MemoryNode,
}Expand description
Neighbor item for graph traversal response.
Fields§
§edge: MemoryEdge§node: MemoryNodeTrait Implementations§
Source§impl Clone for GraphNeighbor
impl Clone for GraphNeighbor
Source§fn clone(&self) -> GraphNeighbor
fn clone(&self) -> GraphNeighbor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GraphNeighbor
impl RefUnwindSafe for GraphNeighbor
impl Send for GraphNeighbor
impl Sync for GraphNeighbor
impl Unpin for GraphNeighbor
impl UnsafeUnpin for GraphNeighbor
impl UnwindSafe for GraphNeighbor
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