pub struct AdjEntry {
pub edge_id: EdgeId,
pub other: NodeId,
pub label_id: u32,
}Expand description
A traversal-hop candidate read directly from an adjacency multimap entry,
without touching the edges/nodes tables.
Fields§
§edge_id: EdgeId§other: NodeId§label_id: u32Trait Implementations§
impl Copy for AdjEntry
impl Eq for AdjEntry
impl StructuralPartialEq for AdjEntry
Auto Trait Implementations§
impl Freeze for AdjEntry
impl RefUnwindSafe for AdjEntry
impl Send for AdjEntry
impl Sync for AdjEntry
impl Unpin for AdjEntry
impl UnsafeUnpin for AdjEntry
impl UnwindSafe for AdjEntry
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