pub struct LoraPath {
pub nodes: Vec<NodeId>,
pub rels: Vec<RelationshipId>,
}Expand description
A materialised path: alternating node/relationship IDs. nodes.len() == rels.len() + 1
Fields§
§nodes: Vec<NodeId>§rels: Vec<RelationshipId>Trait Implementations§
impl StructuralPartialEq for LoraPath
Auto Trait Implementations§
impl Freeze for LoraPath
impl RefUnwindSafe for LoraPath
impl Send for LoraPath
impl Sync for LoraPath
impl Unpin for LoraPath
impl UnsafeUnpin for LoraPath
impl UnwindSafe for LoraPath
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