pub struct EdgeKey {
pub src: u32,
pub rel: u32,
pub dst: u32,
}Expand description
A directed edge from a source node to a destination node with a relationship type.
Used as the key type for neighbor lookups and edge operations.
Fields§
§src: u32§rel: u32§dst: u32Trait Implementations§
Source§impl Ord for EdgeKey
impl Ord for EdgeKey
Source§impl PartialOrd for EdgeKey
impl PartialOrd for EdgeKey
impl Copy for EdgeKey
impl Eq for EdgeKey
impl StructuralPartialEq for EdgeKey
Auto Trait Implementations§
impl Freeze for EdgeKey
impl RefUnwindSafe for EdgeKey
impl Send for EdgeKey
impl Sync for EdgeKey
impl Unpin for EdgeKey
impl UnwindSafe for EdgeKey
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